Prechádzať zdrojové kódy

Frustum: TS missing methods

Guilherme Avila 6 rokov pred
rodič
commit
8e0e94a922
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      src/math/Frustum.d.ts

+ 1 - 1
src/math/Frustum.d.ts

@@ -37,7 +37,7 @@ export class Frustum {
 	copy( frustum: Frustum ): this;
 	setFromMatrix( m: Matrix4 ): Frustum;
 	intersectsObject( object: Object3D ): boolean;
-	intersectsObject( sprite: Sprite ): boolean;
+	intersectsSprite( sprite: Sprite ): boolean;
 	intersectsSphere( sphere: Sphere ): boolean;
 	intersectsBox( box: Box3 ): boolean;
 	containsPoint( point: Vector3 ): boolean;