role-points.class.d.ts 549 B

123456789101112131415161718
  1. import * as BABYLON from '@babylonjs/core';
  2. import '@babylonjs/loaders';
  3. import { AvatarRole } from './avatar.role';
  4. export declare class RolePointsCloud implements AvatarRole {
  5. scene: BABYLON.Scene;
  6. engine: BABYLON.Engine;
  7. constructor(scene: any, engine: any, camera: any);
  8. Mesh: BABYLON.Mesh;
  9. offsetPosition: BABYLON.Vector3;
  10. animationGroup: BABYLON.AnimationGroup;
  11. AnimMap: {
  12. idle: any;
  13. };
  14. init(): Promise<void>;
  15. playAnim(anim: any): void;
  16. loadMesh(): BABYLON.Mesh;
  17. loadIdleAnim(): void;
  18. }