Browse Source

tern-threejs: Correct Matrix4.makeOrthographic()

Mugen87 8 năm trước cách đây
mục cha
commit
8f9d85ad1e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/js/libs/tern-threejs/threejs.js

+ 1 - 1
editor/js/libs/tern-threejs/threejs.js

@@ -3926,7 +3926,7 @@
           "!doc": "Creates a perspective projection matrix."
         },
         "makeOrthographic": {
-          "!type": "fn(left: number, right: number, bottom: number, top: number, near: number, far: number) -> +THREE.Matrix4",
+          "!type": "fn(left: number, right: number, top: number, bottom: number, near: number, far: number) -> +THREE.Matrix4",
           "!doc": "Creates an orthographic projection matrix."
         },
         "clone": {