View source
enum abstract FlxPathType(Int)
package flixel.path
from Int to Int
import flixel.path.FlxPath
Path behavior controls
Variables
inlineread onlyLOOP_BACKWARD:FlxPathType = 0x000100
Move from the end of the path to the start then directly back to the end, and start over.
inlineread onlyLOOP_FORWARD:FlxPathType = 0x000010
Move from the start of the path to the end then directly back to the start, and start over.
inlineread onlyYOYO:FlxPathType = 0x001000
Move from the start of the path to the end then turn around and go back to the start, over and over.