Good evening,
Been hitting my head against the wall on this one. Here are the details:
Trying to create a timer that I can round to 3 decimal places (3.456 seconds) and use that information to activate other events.
When I created a global variable and made it increase 0.001 every 0.001 seconds, I found out in Debug Mode that the variable was becoming 0.0010000000003 or something like that which becomes an issue as I'm trying to have events activate at exactly (EQUAL TO) times.
Is there a way to have my "time" global variable increase by 0.001 every 0.001 seconds and not further past that? Basically, how do I round off the value of my "time" global variable at 0.00X position?