playcanvas
Version:
PlayCanvas WebGL game engine
18 lines (16 loc) • 384 B
JavaScript
/**
* Specified degree of freedom has free movement.
*
* @ignore
*/ const MOTION_FREE = 'free';
/**
* Specified degree of freedom has limited movement.
*
* @ignore
*/ const MOTION_LIMITED = 'limited';
/**
* Specified degree of freedom is locked and allows no movement.
*
* @ignore
*/ const MOTION_LOCKED = 'locked';
export { MOTION_FREE, MOTION_LIMITED, MOTION_LOCKED };