@animech-public/playcanvas
Version:
PlayCanvas WebGL game engine
26 lines (22 loc) • 455 B
JavaScript
/**
* Specified degree of freedom has free movement.
*
* @type {string}
* @ignore
*/
const MOTION_FREE = 'free';
/**
* Specified degree of freedom has limited movement.
*
* @type {string}
* @ignore
*/
const MOTION_LIMITED = 'limited';
/**
* Specified degree of freedom is locked and allows no movement.
*
* @type {string}
* @ignore
*/
const MOTION_LOCKED = 'locked';
export { MOTION_FREE, MOTION_LIMITED, MOTION_LOCKED };