Browse Source

TS: Add instanceId to Intersection interface.

Mugen87 5 years ago
parent
commit
3ffb3fb0b3
1 changed files with 1 additions and 0 deletions
  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 {