com.alicizax.unity.tuyoogam.../Runtime/FileSystem/BundleResult/RawBundleResult/Operation/RawBundleLoadSceneOperation.cs
2025-02-28 16:11:01 +08:00

18 lines
441 B
C#

namespace YooAsset
{
internal class RawBundleLoadSceneOperation : FSLoadSceneOperation
{
internal override void InternalStart()
{
Error = $"{nameof(RawBundleLoadSceneOperation)} not support load scene !";
Status = EOperationStatus.Failed;
}
internal override void InternalUpdate()
{
}
public override void UnSuspendLoad()
{
}
}
}