소스 검색

Correct to perspective camera

supereggbert 6 년 전
부모
커밋
a59e4edd1f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/lights/PointLightShadow.d.ts

+ 2 - 2
src/lights/PointLightShadow.d.ts

@@ -1,8 +1,8 @@
-import { OrthographicCamera } from './../cameras/OrthographicCamera';
+import { PerspectiveCamera } from './../cameras/PerspectiveCamera';
 import { LightShadow } from './LightShadow';
 
 export class PointLightShadow extends LightShadow {
 
-	camera: OrthographicCamera;
+	camera: PerspectiveCamera;
 
 }