3

I am creating a game using GameMaker Studio and I need to stop a timeline that is in progress. How can I approach that with GML code?

1 Answers1

1

You can use

timeline_running = false;

or

timeline_speed = 0;
Dmi7ry
  • 1,050
  • 2
  • 8
  • 13