UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

21 lines (19 loc) 432 B
/** * Specified degree of freedom has free movement. * * @type {string} * @ignore */ var MOTION_FREE = 'free'; /** * Specified degree of freedom has limited movement. * * @type {string} * @ignore */ var MOTION_LIMITED = 'limited'; /** * Specified degree of freedom is locked and allows no movement. * * @type {string} * @ignore */ var MOTION_LOCKED = 'locked'; export { MOTION_FREE, MOTION_LIMITED, MOTION_LOCKED };