① UnityMainThreadDispatcher
作为工具类,用于在非主线程中将任务调度到主线程执行。
using System;
using System.Collections.Generic;
using UnityEngine;
public class UnityMainThreadDispatcher : MonoBehaviour
{
// 用于存储需要在主线程中执行的任务队列
private static readonly Queue<Action> _executionQueue = new Queue<Action>();
// 单例实例
private static UnityMainThreadDispatcher _instance = null;
// 获取单例实例的方法
public static UnityMainThreadDispatcher Instance()
{
// 如果实例为空,尝试在场景中查找
if (_instance == null)
{
_instance = FindObjectOfType<UnityMainThreadDispatcher>();
// 如果场景中没有找到,创建一个新的 GameObject 并附加此脚本
if (_instance == null)
{
_instance = new GameObject("UnityMainThreadDispatcher").AddComponent<UnityMainThreadDispatcher>();
}
}
return _instance;
}
// 每帧调用,用于执行队列中的任务
private void Update()
{
// 使用锁确保线程安全
lock (_executionQueue)
{
// 遍历队列并执行所有任务
while (_executionQueue.Count > 0)
{
_executionQueue.Dequeue().Invoke();
}
}
}
// 将任务添加到队列中
public void Enqueue(Action action)
{
// 使用锁确保线程安全
lock (_executionQueue)
{
_executionQueue.Enqueue(action);
}
}
// 在场景加载前初始化单例实例
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
private static void Initialize()
{
// 调用 Instance() 方法以确保实例被创建
Instance();
}
}
② 使用示例脚本:
-
在
Start
中创建一个新线程并启动,模拟在非主线程中执行任务。 -
DoWork()
方法
这是一个在非主线程中运行的方法。它模拟了一些耗时操作(如Thread.Sleep(1000)
),然后通过UnityMainThreadDispatcher
将任务添加到主线程队列中。
using System.Threading;
using UnityEngine;
public class Example : MonoBehaviour
{
void Start()
{
// 创建一个新线程并启动
Thread thread = new Thread(DoWork);
thread.Start();
}
void DoWork()
{
// 模拟一些耗时操作
Thread.Sleep(1000);
// 将任务添加到主线程队列中
UnityMainThreadDispatcher.Instance().Enqueue(() =>
{
Debug.Log("This is executed on the main thread.");
Debug.Log("GameObject active state: " + gameObject.activeSelf);
});
}
}
感谢大家的观看,您的点赞和关注是我最大的动力
不定时更新知识点和干货呦~