playcanvas
Version:
PlayCanvas WebGL game engine
71 lines (70 loc) • 1.17 kB
TypeScript
/**
* Local coordinate space.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOSPACE_LOCAL: string;
/**
* World coordinate space.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOSPACE_WORLD: string;
/**
* Gizmo axis for the line X.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_X: string;
/**
* Gizmo axis for the line Y.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_Y: string;
/**
* Gizmo axis for the line Z.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_Z: string;
/**
* Gizmo axis for the plane YZ.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_YZ: string;
/**
* Gizmo axis for the plane XZ.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_XZ: string;
/**
* Gizmo axis for the plane XY.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_XY: string;
/**
* Gizmo axis for all directions XYZ.
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_XYZ: string;
/**
* Gizmo axis for facing the camera (facing the camera).
*
* @type {string}
* @category Gizmo
*/
export const GIZMOAXIS_FACE: string;