ソースを参照

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 {