update package system
parent
421dd7458d
commit
a2e3164eab
|
@ -205,11 +205,19 @@ namespace YooAsset
|
||||||
else
|
else
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
|
|
||||||
// 检测运行平台
|
// 检测运行时平台
|
||||||
if (_playMode == EPlayMode.HostPlayMode || _playMode == EPlayMode.OfflinePlayMode)
|
if (_playMode != EPlayMode.EditorSimulateMode)
|
||||||
{
|
{
|
||||||
#if UNITY_WEBGL
|
#if UNITY_WEBGL
|
||||||
throw new Exception($"WebGL plateform not support : {_playMode} ! Please use {nameof(EPlayMode.WebPlayMode)}");
|
if (_playMode != EPlayMode.WebPlayMode)
|
||||||
|
{
|
||||||
|
throw new Exception($"{_playMode} can not support WebGL plateform ! Please use {nameof(EPlayMode.WebPlayMode)}");
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
if (_playMode == EPlayMode.WebPlayMode)
|
||||||
|
{
|
||||||
|
throw new Exception($"{nameof(EPlayMode.WebPlayMode)} only support WebGL plateform !");
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue