Elias Hasle 7 سال پیش
والد
کامیت
461f7cf355
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/cameras/OrthographicCamera.js

+ 1 - 1
src/cameras/OrthographicCamera.js

@@ -17,7 +17,7 @@ function OrthographicCamera( left, right, top, bottom, near, far ) {
 
 	this.left = ( left !== undefined ) ? left : -1;
 	this.right = ( right !== undefined ) ? right : 1;
-	this.top = ( top !== undefined ) ? ltopeft : 1;
+	this.top = ( top !== undefined ) ? top : 1;
 	this.bottom = ( bottom !== undefined ) ? bottom : -1;
 
 	this.near = ( near !== undefined ) ? near : 0.1;

粤ICP备19079148号