Prefab.d.ts 263 B

123456789
  1. import { Object3D } from 'three';
  2. export declare class Prefab {
  3. private _uuid;
  4. constructor(uuid: any);
  5. get uuid(): string;
  6. get path(): string;
  7. get name(): string;
  8. instantiate(parent?: Object3D): Object3D<import("three").Event>;
  9. }