소스 검색

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 {