浏览代码

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;
 
 }