scenes/SceneTemplate.jsをscenes/シーン名.jsとしてコピーするシーン名.jsを開きSceneNameをシーン名に置き換えるindex.html内に作成したシーンをimportし、scene配列内にシーン名を追加する
- 既存のシーンを終了して新しいシーンを呼び出し
this.scene.start("シーン名") - 既存のシーンに重ねて別のシーンを呼び出し
this.scene.launch("シーン名") - シーンを指定して中断
this.scene.pause("シーン名") - シーンを指定して再開
this.scene.resume("シーン名") - シーンを指定して終了
this.scene.stop("シーン名")