Update InstantiateOperation.cs

禁用引擎提供的GameObject对象的异步实例化
pull/392/head
何冠峰 2024-10-28 12:11:41 +08:00
parent 27563fa58e
commit 75a013d961
1 changed files with 5 additions and 1 deletions

View File

@ -74,7 +74,11 @@ namespace YooAsset
}
#if UNITY_2022_3_OR_NEWER
_steps = ESteps.CloneAsync;
//TODO
// BUG环境Windows平台Unity2022.3.41f1版本,编辑器模式。
// BUG描述异步实例化Prefab预制体有概率丢失Mono脚本里序列化的数组里某个成员
//_steps = ESteps.CloneAsync;
_steps = ESteps.CloneSync;
#else
_steps = ESteps.CloneSync;
#endif