UNPKG

@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.

12 lines (11 loc) 486 B
import { Object3D } from "three"; import { AssetReference } from "../engine_addressables.js"; import type { SourceIdentifier } from "../engine_types.js"; export declare class NeedleXRUtils { /** Searches the hierarchy for objects following a specific naming scheme */ static tryFindAvatarObjects(obj: Object3D, sourceId: SourceIdentifier, result: { head?: AssetReference; leftHand?: AssetReference; rightHand?: AssetReference; }): void; }