Borut 7 年之前
父节点
当前提交
e4456b0ed4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Mesh/babylon.transformNode.ts

+ 2 - 2
src/Mesh/babylon.transformNode.ts

@@ -9,8 +9,8 @@ module BABYLON {
         
         private _forward = new Vector3(0, 0, 1);
         private _up = new Vector3(0, 1, 0);
-        private _right = new Vector3(0, 1, 0);
-        private _rightInverted = new Vector3(0, -1, 0);
+        private _right = new Vector3(1, 0, 0);
+        private _rightInverted = new Vector3(-1, 0, 0);
 
         // Properties
         @serializeAsVector3()