//ゲームの操作説明 //簡単にゲームで使用するキーの説明を行う。 //方向キー:移動 //スペース:決定 //zキー:キャンセル void readme() { image(img0,0,0,600,600); fill(0); textSize(25); text("操作説明", width/2.5, height/10); text("移動:十字キー", 50, 100); text("決定:スペースキー", 50, 150); text("キャンセル:zキー", 50, 200); text("ステータス表示:マップ上でスペースキー", 50, 250); fill(#ff0000); text("スペースキーで冒険の始まりだ!!!", 50, 500); }