1
0

Create_0.gml 403 B

123456789101112131415161718
  1. global.input_handles_index = [
  2. "ingame",
  3. "title"
  4. ]
  5. for (var i = 0; i < array_length(global.input_handles_index); i++) {
  6. variable_instance_set(id, global.input_handles_index[i], undefined);
  7. }
  8. autoreg_handle("ingame","ingame",1)
  9. jump_buffer_timer = 0;
  10. jump_buffer_max = 6;
  11. /**/
  12. _jump_p = undefined;
  13. _jump_r = undefined;
  14. _left = undefined;
  15. _right = undefined;
  16. _dash = undefined;
  17. _attack = undefined;