【Unity3d】【解决BUG思路】get_gameObject can only be called from the main thread

BUG:

11-02 14:38:46.703 6555-6934/net.lionbird.google.countryCreatorUS E/Unity: UnityException: get_gameObject can only be called from the main thread.
    Constructors and field initializers will be executed from the loading thread when loading a scene.
    Don't use this function in the constructor or field initializers, instead move initialization code to the Awake or Start function.
      at BannerViewController.GetbannerPosition (System.String id, Boolean _ipx) [0x00036] in D:\projects\worldCreater\Assets\_LBEngine\_Scripts\Banner\BannerViewController.cs:221 
      at BannerUpdate.updateSetting () [0x00030] in D:\projects\worldCreater\Assets\_LBEngine\_Scripts\Banner\BannerUpdate.cs:29 
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
        at (wrapper delegate-invoke) System.Action:invoke_void__this__ ()
      at (wrap

原因:

       SDK线程调用了主线程才可以调用的方法

解决方案:

        用代理封装要执行的方法。由Unity Update调用。

using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading;
using UnityEngine;

public class MainThreadCall : MonoBehaviour {
    static object locker = new object();
    static List<Action> aList = new List<Action>();
    static int count = 0;

    public static int MainThreadID { get; private set; }

    private void Awake()
    {
        MainThreadID = Thread.CurrentThread.ManagedThreadId; 
    }
    // Update is called once per frame
    void Update () {
        if (count != 0)
        {
            lock (locker) {
                foreach (var a in aList)
                {
                    if(a!= null) a();
                }
                aList.Clear();
                count = 0;
            }
        }
	}

    private static void AddCall(Action a)
    {
        lock (locker) {
            aList.Add(a);
            count++;
        }
    }
    static public void SafeCallback(Action _a)
    {
        AddCall(_a);
    }
    static public void SafeCallback<T>(Action<T> _a, T p1)
    {
        Action tmp = () => { _a(p1); };
        AddCall(tmp);
    }
    static public void SafeCallback<T1, T2>(Action<T1, T2> _a, T1 p1, T2 p2)
    {
        Action tmp = () => { _a(p1, p2); };
        AddCall(tmp);
    }
    static public void SafeCallback<T1, T2, T3>(Action<T1, T2, T3> _a, T1 p1, T2 p2, T3 p3)
    {
        Action tmp = () => { _a(p1, p2, p3); };
        AddCall(tmp);
    }
    static public void SafeCallback<T1, T2, T3, T4>(Action<T1, T2, T3, T4> _a, T1 p1, T2 p2, T3 p3, T4 p4)
    {
        Action tmp = () => { _a(p1, p2, p3, p4); };
        AddCall(tmp);
    }
}

 

  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值