Skip to content

Instantly share code, notes, and snippets.

@triacontane
Last active July 31, 2021 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save triacontane/bdbf2d30c96ea84523edf188908e8927 to your computer and use it in GitHub Desktop.
Save triacontane/bdbf2d30c96ea84523edf188908e8927 to your computer and use it in GitHub Desktop.
自動ロードスクリプト
const promise = DataManager.loadGameLatest();
if (promise) {
promise.then(() => {
$gameSystem.onAfterLoad();
SceneManager.goto(Scene_Map);
});
}
@triacontane
Copy link
Author

以下のプラグイン利用が前提です。
https://github.com/triacontane/RPGMakerMV/blob/mz_master/AutoLoad.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment