Explorar o código

Merge pull request #4971 from sebavan/master

Nightly
sebavan %!s(int64=7) %!d(string=hai) anos
pai
achega
7b13ce39b4

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 9350 - 9341
Playground/babylon.d.txt


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 8933 - 8933
dist/preview release/babylon.d.ts


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
dist/preview release/babylon.js


+ 1 - 1
dist/preview release/babylon.max.js

@@ -66417,7 +66417,7 @@ var BABYLON;
         };
         __decorate([
             BABYLON.serialize("rotationY")
-        ], CubeTexture.prototype, "_rotationY", void 0);
+        ], CubeTexture.prototype, "rotationY", null);
         return CubeTexture;
     }(BABYLON.BaseTexture));
     BABYLON.CubeTexture = CubeTexture;

+ 1 - 1
dist/preview release/babylon.no-module.max.js

@@ -66384,7 +66384,7 @@ var BABYLON;
         };
         __decorate([
             BABYLON.serialize("rotationY")
-        ], CubeTexture.prototype, "_rotationY", void 0);
+        ], CubeTexture.prototype, "rotationY", null);
         return CubeTexture;
     }(BABYLON.BaseTexture));
     BABYLON.CubeTexture = CubeTexture;

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
dist/preview release/babylon.worker.js


+ 1 - 1
dist/preview release/es6.js

@@ -66384,7 +66384,7 @@ var BABYLON;
         };
         __decorate([
             BABYLON.serialize("rotationY")
-        ], CubeTexture.prototype, "_rotationY", void 0);
+        ], CubeTexture.prototype, "rotationY", null);
         return CubeTexture;
     }(BABYLON.BaseTexture));
     BABYLON.CubeTexture = CubeTexture;

+ 2 - 11
dist/preview release/typedocValidationBaseline.json

@@ -1,16 +1,7 @@
 {
-  "errors": 4003,
+  "errors": 4002,
   "babylon.typedoc.json": {
-    "errors": 4003,
-    "AbstractMesh": {
-      "Property": {
-        "showBoundingBox": {
-          "Naming": {
-            "NotPascalCase": true
-          }
-        }
-      }
-    },
+    "errors": 4002,
     "AbstractScene": {
       "Property": {
         "effectLayers": {

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
dist/preview release/viewer/babylon.viewer.js


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
dist/preview release/viewer/babylon.viewer.max.js


+ 2 - 2
src/Materials/Textures/babylon.cubeTexture.ts

@@ -30,12 +30,12 @@
             return this._boundingBoxSize;
         }
 
-
-        @serialize("rotationY")
         protected _rotationY: number = 0;
+
         /**
          * Sets texture matrix rotation angle around Y axis in radians.
          */
+        @serialize("rotationY")
         public set rotationY(value: number) {
             this._rotationY = value;
             this.setReflectionTextureMatrix(BABYLON.Matrix.RotationY(this._rotationY));