画面真っ暗問題でアプリ化できていなかったツクールMZですが、海外のツクールフォーラムに解決法が載っていたので、何とかアプリ化することができました(^^)
結論から言うとrmmz_managers.jsに一行追加するだけです。
1 2 3 4 5 6 7 8 9 10 11 12 |
SceneManager.isGameActive = function() { //下記文を追加します。 return true; // [Note] We use "window.top" to support an iframe. try { return window.top.document.hasFocus(); } catch (e) { // SecurityError return true; } }; |