UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

17 lines (16 loc) 420 B
import { Interactive } from '../interfaces'; export interface InteractiveObject3D extends Interactive, InstanceMeshInstance { isInstancedMesh: boolean; } export interface InstanceMeshInstance { id: number; instanceIndex: number; position: THREE.Vector3; color: number; $$instanceOf: THREE.InstancedMesh; isInstancedMeshInstance: boolean; /** * 数据模型 */ model: any; }