What to use besides event tick?

What can I use besides Event Tick to execute events that need to be checked constantly or events that do not have a trigger like a key press?

Tick is for stuff that needs to happen every frame.

If you need to check something regularly, but not every frame, then use SetTimerByEvent or SetTimerByFunction.

1 Like

I will add to this that you will also want to know about the Clear and Invalidate timer by handle node. this stops the looping event. the blue handle pin expects to be plugged into the return value pin from the set timer nodes.

324898-clear-and-invalidate.png

Another alternative is to modify how the Actor Tick works. you can adjust the rate at which it fires (0 = every frame) and in fact even use a node to trigger it to stop and start.

324908-actortickenable.png

1 Like