[Request/Idea] Frame Ticker Object
Twould be nice if someone would make a little object to run conditions every 'n' frames.
So you'd only really have the following conditions:
1. Every 'n' Frames
2. On Frame 'n' (this only happens once)
3. Every 'n' Frames, + 'y' Offset
The 'offset' version would allow you to offset the ticker a little, so the first trigger would occur on the 'offset' frame, and all subsequent triggers would run 'n' frames afterwards.
So if you have the following conditions:
Every 10 Frames, Offset 0
--- Do 'A'
Every 10 Frames, Offset 5
--- Do 'B'
Then the frames would go...
A... B... A... B... A ...B
...Staggered at 5 frame intervals, with each process waiting 10 frames before it runs again.
This can all be done with workarounds already, but it'd be a great simplifier if someone'd make an extension for it. And fairly simple to make too, in comparison to some other requests. :)
Re: [Request/Idea] Frame Ticker Object
Just use fast loop object.
Re: [Request/Idea] Frame Ticker Object