Browse Source

Added default values for zoom, near and far properties of docs / orthographic camera (#10006)

Lewy Blue 8 năm trước cách đây
mục cha
commit
fbdc314183
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      docs/api/cameras/OrthographicCamera.html

+ 4 - 4
docs/api/cameras/OrthographicCamera.html

@@ -51,7 +51,7 @@ scene.add( camera );</code>
 		<h2>Properties</h2>
 
 		<h3>[property:number zoom]</h3>
-		<div>Gets or sets the zoom factor of the camera. </div>
+		<div>Gets or sets the zoom factor of the camera. Default is *1*.</div>
 
 		<h3>[property:Float left]</h3>
 		<div>Camera frustum left plane.</div>
@@ -66,10 +66,10 @@ scene.add( camera );</code>
 		<div>Camera frustum bottom plane.</div>
 
 		<h3>[property:Float near]</h3>
-		<div>Camera frustum near plane.</div>
+		<div>Camera frustum near plane. Default is *0.1*.</div>
 
 		<h3>[property:Float far]</h3>
-		<div>Camera frustum far plane.</div>
+		<div>Camera frustum far plane. Default is *2000*.</div>
 
 
 		<h2>Methods</h2>
@@ -101,7 +101,7 @@ scene.add( camera );</code>
 		<h3>[method:OrthographicCamera clone]()</h3>
 		<div>
 		<br />
-		It returns a clone of OrthographicCamera.
+		Returns a clone of the OrthographicCamera.
 		</div>