Hello!
I have this recursive function
which prints how many times it was called onto an on-screen Text object.
The weird thing I observed is that without this "Trigger once" clause, it rapidly updates the Text object every second, e.g. It says "1" for a second then rapidly 2,3,4,5 and then "5" for another second. Then the process repeats.
With "Trigger Once" present, it behaves as I would have expected : the text field increments by 1 each second.
The question is why do I need the "Trigger Once" clause to make it behave as expected? How is it getting called 4-5 times per call without the "Trigger once"?
If someone could explain what I am missing here I would be very grateful!
Thank you in advance.