UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

21 lines (18 loc) 383 B
export enum PathFollowerFlags { Active = 1, Locked = 2, Loop = 4, 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, }