Function
go
(name: SceneName, args: any): voidGo to a scene, passing all rest args to scene callback.
param name- The scene name.
param args- The rest args to pass to the scene callback.
// go to "game" scene
go("game");
// go with options
go("game", { level: 1 });since v2000.0
group Scene