キーボードを押して次ルームへ移動
最後のルームまで行ったら最初のルームへ戻る機能付き

///GoNextRoom(keyboard_key);
/* Go next room hit any Keys

GoNextRoom("G");
*/
var a = argument0;
    if keyboard_check_pressed(ord(a)) 
    {
    var b = room;
        if room_next(b) != -1 
        {
            room_goto(room_next(b));
        }
        else
        {
            room_goto(room_first);
        };
    };

ライブラリ一覧へ戻る

Leave a Reply

Your email address will not be published. Required fields are marked *