InamuraJIN / ActionRecorder

GNU General Public License v3.0
178 stars 15 forks source link

Fix Timer events when inside Loop macros #58

Closed GustJc closed 6 months ago

GustJc commented 9 months ago

Putting a Timer event macro inside Loops wasn't working. #56 This fixes it.

This was happening because the loop was trying to execute all its loops in a single frame, which did not considers the timers delayed execution using 'run_queued_macros'.

I think this is quite an ugly solution, feel free to reject this and make a more elegant fix if you want to. Hopefully this helps show what the problem with timers inside loop was.

Changes

RivinHD commented 6 months ago

Thanks I definitely understood the problem, but I took a more general approach https://github.com/InamuraJIN/ActionRecorder/pull/65