【解决】Unity3D中无法在MQTT事件中执行Animator

问题原因:

解决方法:

解决过程

1、在 Unity 中创建一个名为 MainThreadDispatcher 的脚本,用于处理主线程操作。

cs 复制代码
using System.Collections.Generic;
using UnityEngine;

public class MainThreadDispatcher : MonoBehaviour
{
    private static MainThreadDispatcher instance;
    private static readonly Queue<System.Action> actionQueue = new Queue<System.Action>();

    private void Awake()
    {
        instance = this;
    }

    private void Update()
    {
        lock (actionQueue)
        {
            while (actionQueue.Count > 0)
            {
                System.Action action = actionQueue.Dequeue();
                action.Invoke();
            }
        }
    }

    public static void ExecuteOnMainThread(System.Action action)
    {
        lock (actionQueue)
        {
            actionQueue.Enqueue(action);
        }
    }
}

2、在 Unity 中创建一个名为 MainThreadDispatcherInitializer 的脚本,用于初始化 MainThreadDispatcher。

cs 复制代码
using UnityEngine;

public class MainThreadDispatcherInitializer : MonoBehaviour
{
    private void Awake()
    {
        DontDestroyOnLoad(this.gameObject);
        gameObject.AddComponent<MainThreadDispatcher>();
    }
}

3、在 Unity 中创建一个名为 MainThreadDispatcherInitializer 的空 GameObject,并将 MainThreadDispatcherInitializer 脚本添加到该 GameObject 上。

4、在其他脚本中,可以通过 MainThreadDispatcher.ExecuteOnMainThread 方法将操作推送到主线程执行。

cs 复制代码
public class ExampleScript : MonoBehaviour
{
    private void Start()
    {
        // 在其他线程中执行操作
        System.Threading.Thread thread = new System.Threading.Thread(() =>
        {
            // 模拟耗时操作
            System.Threading.Thread.Sleep(2000);

            // 在主线程中执行操作
            MainThreadDispatcher.ExecuteOnMainThread(() =>
            {
                // 执行动画操作
                Debug.Log("操作在主线程中执行");
            });
        });

        thread.Start();
    }
}

在这也感谢siki学院的Sk-Sky老师耐心的帮我远程解决问题

相关推荐
SmalBox3 小时前
【基础】Unity着色器编程的语言和数学基础介绍
unity3d·游戏开发·图形学
mysterFeng4 小时前
Unity3D学习笔记-跑酷练习2
unity3d
SmalBox20 小时前
【基础】Unity着色器网格和计算对象介绍
unity3d·游戏开发·图形学
SmalBox2 天前
【URP】Unity[内置Shader]粒子非光照ParticlesUnlit
unity3d·游戏开发·图形学
SmalBox3 天前
【URP】Unity[内置Shader]粒子简单光照ParticlesSimpleLit
unity3d·游戏开发·图形学
SmalBox4 天前
【URP】Unity[内置Shader]粒子光照ParticlesLit
unity3d·游戏开发·图形学
SmalBox6 天前
【URP】Unity[内置Shader]地形光照TerrainLit
unity3d·游戏开发·图形学
SmalBox6 天前
【URP】Unity[内置Shader]烘焙光照BakedLit
unity3d·游戏开发·图形学
SmalBox7 天前
【URP】Unity[内置Shader]非光照Unlit
unity3d·游戏开发·图形学
SmalBox8 天前
【URP】Unity[内置Shader]简单光照SimpleLit
unity3d·游戏开发·图形学