We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
api
「ウィンドウ」→「プロジェクトオプション」→「グローバル変数」にて$customLoading をtrueにすると, 画像・音声の読み込み完了前にプログラムを開始することができます.主にローディング画面を 作成するのに使います.
$Boot.loadedAll
true
Main
//ロード中 x=$screenHeight/2; y=200; size=30; text="Loading..."; while(!$Boot.loadedAll) { y=200-sin($frameCount*5)*20; update(); } //ロード完了(これ以降,キャラクタパターンや$soundが利用可能) text="";