@needle-tools/engine
Version:
Needle Engine is a web-based runtime for 3D apps. It runs on your machine for development with great integrations into editors like Unity or Blender - and can be deployed onto any device! It is flexible, extensible and networking and XR are built-in.
20 lines (19 loc) • 545 B
TypeScript
import { Color } from "three";
import { Behaviour } from "./Component.js";
/**
* BoxGizmo is a component that displays a box around the object in the scene. It can optionally expand to the object's bounds.
*
* @summary Display a box around the object
* @category Helpers
* @group Components
*/
export declare class BoxGizmo extends Behaviour {
objectBounds: boolean;
color?: Color;
isGizmo: boolean;
private _gizmoObject;
private _boxHelper;
onEnable(): void;
onDisable(): void;
private syncObjectBounds;
}