| 123456789101112131415161718192021222324252627282930313233343536 |
- global.input_handles_index = [
- "debug",
- "ingame",
- "title"
- ]
- for (var i = 0; i < array_length(global.input_handles_index); i++) {
- variable_instance_set(id, global.input_handles_index[i], undefined);
- }
- autoreg_handle("ingame", "ingame", 1)
- autoreg_handle("title", "title", 100);
- _jump_p = undefined;
- _jump_r = undefined;
- _left = undefined;
- _right = undefined;
- _up = undefined;
- _down = undefined;
- _dash = undefined;
- _attack = undefined;
- _newgame = undefined;
- _continue = undefined;
- _quitgame = undefined;
- _return = undefined;
- global.in_game_manager = noone;
- global.camera = noone;
- global.player = noone;
- // debugging
- global.developer_mode = true;
- // save file
- global.save_data = {};
- global.save_filename = "ddmyx_save.dat";
|