mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-26 18:50:10 +00:00
18 lines
441 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |