@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
28 lines (25 loc) • 473 B
JavaScript
/**
*
* @enum
*/
export const PathFollowerFlags = {
Active: 1,
Locked: 2,
Loop: 4,
/**
* Set when follower reaches the end of the path
*/
Finished: 8,
/**
* On which axis to write position
*/
WritePositionX: 16,
WritePositionY: 32,
WritePositionZ: 64,
/**
* On which axis to write rotation
*/
WriteRotationX: 128,
WriteRotationY: 256,
WriteRotationZ: 512,
};