UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

18 lines (16 loc) 384 B
/** * 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 };