Hey Guys,
I ran into an issue in GMS2-LTS where the game wont run because I placed a forward slash after a macro I created.
But when I type the following:
It shows an error.
My workaround is this:
Which works as it should.
![1707210896268.png 1707210896268.png]()
You guys know what the problem is?
I ran into an issue in GMS2-LTS where the game wont run because I placed a forward slash after a macro I created.
Code:
#macro sec room_speed;
Code:
rot = sec / 2;
My workaround is this:
Code:
rot = (1 / 2) * sec;

You guys know what the problem is?