playcanvas
Version:
PlayCanvas WebGL game engine
19 lines (18 loc) • 346 B
TypeScript
/**
* Specified degree of freedom has free movement.
*
* @ignore
*/
export const MOTION_FREE: "free";
/**
* Specified degree of freedom has limited movement.
*
* @ignore
*/
export const MOTION_LIMITED: "limited";
/**
* Specified degree of freedom is locked and allows no movement.
*
* @ignore
*/
export const MOTION_LOCKED: "locked";