Hello.
For example, in another language I might write
for (int i = 0; i < n; i + 3) {[/code:5hmp3ot9] To skip my loop index 3 at a time. What is the best way to achieve the same effect in C2?
With a condition, system compare for example, or conditionals in actions.
Develop games in your browser. Powerful, performant & highly capable.
Or use (i < int(n/3)), and use (loopindex*3).
Thank you for your replies.