Last active
September 22, 2016 15:53
-
-
Save triacontane/1ed37763ffccf5701090e065071c6888 to your computer and use it in GitHub Desktop.
シーン遷移スクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// アイテム画面 | |
SceneManager.push(Scene_Item); | |
// スキル、ステータス、装備画面 | |
var actor = $gameActors.actor(1); | |
var bitmap = ImageManager.loadFace(actor.faceName(), 0); | |
bitmap.addLoadListener(function() { | |
$gameParty.setMenuActor(actor); | |
SceneManager.push(Scene_Skill); | |
// SceneManager.push(Scene_Status); | |
// SceneManager.push(Scene_Equip); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment