浏览代码

TS: Add instanceId to Intersection interface.

Mugen87 5 年之前
父节点
当前提交
3ffb3fb0b3
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/core/Raycaster.d.ts

+ 1 - 0
src/core/Raycaster.d.ts

@@ -14,6 +14,7 @@ export interface Intersection {
 	faceIndex?: number;
 	object: Object3D;
 	uv?: Vector2;
+	instanceId?: number;
 }
 
 export interface RaycasterParameters {