Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.
/ Input Public archive

Commit 31ab297

Browse files
committed
Merge branch 'dev'
2 parents 2876a99 + 431189c commit 31ab297

File tree

14 files changed

+34
-12
lines changed

14 files changed

+34
-12
lines changed

β€Žinput.yypβ€Ž

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žobjects/obj_example_mp_gameplay/Step_0.gmlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ if (is_struct(_status))
44
{
55
if (array_length(_status.new_disconnections) > 0)
66
{
7-
room_goto(rm_example_mp_join);
7+
room_goto(rm_example_mp);
88
}
9-
}
9+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//A call to input_tick() is only needed in versions of GameMaker earlier than 2022.5
2+
//If you are using earlier versions than you must only call input_tick() once a frame
3+
input_tick(true);

β€Žobjects/obj_example_mp_gameplay/obj_example_mp_gameplay.yyβ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//A call to input_tick() is only needed in versions of GameMaker earlier than 2022.5
2+
//If you are using earlier versions than you must only call input_tick() once a frame
3+
input_tick(true);

β€Žobjects/obj_example_mp_join/obj_example_mp_join.yyβ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//A call to input_tick() is only needed in versions of GameMaker earlier than 2022.5
2+
//If you are using earlier versions than you must only call input_tick() once a frame
3+
input_tick(true);

β€Žobjects/obj_example_platformer/obj_example_platformer.yyβ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//A call to input_tick() is only needed in versions of GameMaker earlier than 2022.5
2+
//If you are using earlier versions than you must only call input_tick() once a frame
3+
input_tick(true);

β€Žobjects/obj_example_rebinding/obj_example_rebinding.yyβ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)