
Originally Posted by
ChrisBurrows
Changing the current position obviously changes the current position so every time you change it, it changes. That said, only one particular fast loop ever runs at once. You can however run one fast loop inside another, and another inside of that, but the parent loop is always paused until the child loop has completed the final iteration.
Personally, I never use or refer to the current position, but instead loop through and compare to the loop index. What exactly are you trying to do?