FollowPath.LoopType


Declaration

public enum LoopType

Description

A type of looping behavior.

Properties

NoneTurns off looping.
RestartRestarts the object from the beginning of the path after it reaches the end. The object will jump to the position of the first node.
CircularAfter reaching the end of the path, the object will traverse back to the first node and continue with the next loop.
PingPongThe object traverses along the path forwards then backwards then forwards then backwards, etc.