@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.
121 lines (120 loc) • 5.39 kB
TypeScript
import { Object3D, Quaternion, Vector3 } from "three";
import type { ComponentInit, Constructor, ConstructorConcrete, HideFlags, IComponent } from "../../engine/engine_types.js";
declare module 'three' {
interface Object3D {
get guid(): string | undefined;
set guid(value: string | undefined);
/**
* Allows to control e.g. if an object should be exported
*/
hideFlags: HideFlags;
/**
* Add a Needle Engine component to the {@link Object3D}.
* @param comp The component instance or constructor to add.
* @param init Optional initialization data for the component.
* @returns The added component instance.
* @example Directly pass in constructor and properties:
* ```ts
* const obj = new Object3D();
* obj.addComponent(MyComponent, { myProperty: 42 });
* ```
* @example Create a component instance, assign properties and then add it:
* ```ts
* const obj = new Object3D();
* const comp = new MyComponent();
* comp.myProperty = 42;
* obj.addComponent(comp);
* ```
*/
addComponent<T extends IComponent>(comp: T | ConstructorConcrete<T>, init?: ComponentInit<T>): T;
/**
* Remove a Needle Engine component from the {@link Object3D}.
*/
removeComponent(inst: IComponent): IComponent;
/**
* Get or add a Needle Engine component to the Object3D.
* If the component already exists, it will be returned. Otherwise, a new component will be added.
* @param typeName The component constructor to get or add.
* @param init Optional initialization data for the component.
* @returns The component instance.
*/
getOrAddComponent<T extends IComponent>(typeName: ConstructorConcrete<T>, init?: ComponentInit<T>): T;
/**
* Get a Needle Engine component from the {@link Object3D}.
* @returns The component instance or null if not found.
*/
getComponent<T extends IComponent>(type: Constructor<T>): T | null;
/**
* Get all components of a specific type from the {@link Object3D}.
* @param arr Optional array to fill with the found components.
* @returns An array of components.
*/
getComponents<T extends IComponent>(type: Constructor<T>, arr?: []): T[];
/**
* Get a Needle Engine component from the {@link Object3D} or its children. This will search on the current Object and all its children.
* @returns The component instance or null if not found.
*/
getComponentInChildren<T extends IComponent>(type: Constructor<T>): T | null;
/**
* Get all components of a specific type from the {@link Object3D} or its children. This will search on the current Object and all its children.
* @param arr Optional array to fill with the found components.
* @returns An array of components.
*/
getComponentsInChildren<T extends IComponent>(type: Constructor<T>, arr?: []): T[];
/**
* Get a Needle Engine component from the {@link Object3D} or its parents. This will search on the current Object and all its parents.
* @returns The component instance or null if not found.
*/
getComponentInParent<T extends IComponent>(type: Constructor<T>): T | null;
/**
* Get all Needle Engine components of a specific type from the {@link Object3D} or its parents. This will search on the current Object and all its parents.
* @param arr Optional array to fill with the found components.
* @returns An array of components.
*/
getComponentsInParent<T extends IComponent>(type: Constructor<T>, arr?: []): T[];
/**
* Destroys the {@link Object3D} and all its Needle Engine components.
*/
destroy(): void;
/**
* Get or set the world position of the {@link Object3D}.
* Added by Needle Engine.
*/
worldPosition: Vector3;
/**
* Get or set the world quaternion of the {@link Object3D}.
* Added by Needle Engine.
*/
worldQuaternion: Quaternion;
/**
* Get or set the world rotation of the {@link Object3D}.
* Added by Needle Engine.
*/
worldRotation: Vector3;
/**
* Get or set the world scale of the {@link Object3D}.
* Added by Needle Engine.
*/
worldScale: Vector3;
/**
* Get the world forward vector of the {@link Object3D}.
* Added by Needle Engine.
*/
get worldForward(): Vector3;
/**
* Get the world right vector of the {@link Object3D}.
* Added by Needle Engine.
*/
get worldRight(): Vector3;
/**
* Get the world up vector of the {@link Object3D}.
* Added by Needle Engine.
*/
get worldUp(): Vector3;
}
}
/**
* @internal
* used to decorate cloned object3D objects with the same added components defined above
**/
export declare function apply(object: Object3D): void;