David Catuhe 8 年之前
父節點
當前提交
6228fc27a3

File diff suppressed because it is too large
+ 6709 - 6705
dist/preview release/babylon.d.ts


File diff suppressed because it is too large
+ 2 - 2
dist/preview release/babylon.js


+ 23 - 6
dist/preview release/babylon.max.js

@@ -7801,7 +7801,7 @@ var BABYLON;
         });
         Object.defineProperty(Engine, "Version", {
             get: function () {
-                return "3.0-beta";
+                return "3.0-rc";
             },
             enumerable: true,
             configurable: true
@@ -67346,10 +67346,7 @@ var BABYLON;
             this._colorGradingEnabled = false;
             this._colorGradingWithGreenDepth = false;
             this._colorGradingBGR = false;
-            /**
-             * Exposure used in the effect.
-             */
-            this.exposure = 1.0;
+            this._exposure = 1.0;
             this._toneMappingEnabled = false;
             this._contrast = 1.0;
             /**
@@ -67466,6 +67463,26 @@ var BABYLON;
             enumerable: true,
             configurable: true
         });
+        Object.defineProperty(ImageProcessingConfiguration.prototype, "exposure", {
+            /**
+             * Gets the Exposure used in the effect.
+             */
+            get: function () {
+                return this._exposure;
+            },
+            /**
+             * Sets the Exposure used in the effect.
+             */
+            set: function (value) {
+                if (this._exposure === value) {
+                    return;
+                }
+                this._exposure = value;
+                this._updateParameters();
+            },
+            enumerable: true,
+            configurable: true
+        });
         Object.defineProperty(ImageProcessingConfiguration.prototype, "toneMappingEnabled", {
             /**
              * Gets wether the tone mapping effect is enabled.
@@ -67737,7 +67754,7 @@ var BABYLON;
     ], ImageProcessingConfiguration.prototype, "_colorGradingBGR", void 0);
     __decorate([
         BABYLON.serialize()
-    ], ImageProcessingConfiguration.prototype, "exposure", void 0);
+    ], ImageProcessingConfiguration.prototype, "_exposure", void 0);
     __decorate([
         BABYLON.serialize()
     ], ImageProcessingConfiguration.prototype, "_toneMappingEnabled", void 0);

File diff suppressed because it is too large
+ 6709 - 6705
dist/preview release/babylon.module.d.ts


File diff suppressed because it is too large
+ 2 - 2
dist/preview release/babylon.worker.js


File diff suppressed because it is too large
+ 2947 - 2943
dist/preview release/customConfigurations/minimalViewer/babylon.d.ts


File diff suppressed because it is too large
+ 7 - 7
dist/preview release/customConfigurations/minimalViewer/babylon.js


+ 23 - 6
dist/preview release/customConfigurations/minimalViewer/babylon.max.js

@@ -7801,7 +7801,7 @@ var BABYLON;
         });
         Object.defineProperty(Engine, "Version", {
             get: function () {
-                return "3.0-beta";
+                return "3.0-rc";
             },
             enumerable: true,
             configurable: true
@@ -40618,10 +40618,7 @@ var BABYLON;
             this._colorGradingEnabled = false;
             this._colorGradingWithGreenDepth = false;
             this._colorGradingBGR = false;
-            /**
-             * Exposure used in the effect.
-             */
-            this.exposure = 1.0;
+            this._exposure = 1.0;
             this._toneMappingEnabled = false;
             this._contrast = 1.0;
             /**
@@ -40738,6 +40735,26 @@ var BABYLON;
             enumerable: true,
             configurable: true
         });
+        Object.defineProperty(ImageProcessingConfiguration.prototype, "exposure", {
+            /**
+             * Gets the Exposure used in the effect.
+             */
+            get: function () {
+                return this._exposure;
+            },
+            /**
+             * Sets the Exposure used in the effect.
+             */
+            set: function (value) {
+                if (this._exposure === value) {
+                    return;
+                }
+                this._exposure = value;
+                this._updateParameters();
+            },
+            enumerable: true,
+            configurable: true
+        });
         Object.defineProperty(ImageProcessingConfiguration.prototype, "toneMappingEnabled", {
             /**
              * Gets wether the tone mapping effect is enabled.
@@ -41009,7 +41026,7 @@ var BABYLON;
     ], ImageProcessingConfiguration.prototype, "_colorGradingBGR", void 0);
     __decorate([
         BABYLON.serialize()
-    ], ImageProcessingConfiguration.prototype, "exposure", void 0);
+    ], ImageProcessingConfiguration.prototype, "_exposure", void 0);
     __decorate([
         BABYLON.serialize()
     ], ImageProcessingConfiguration.prototype, "_toneMappingEnabled", void 0);

File diff suppressed because it is too large
+ 2947 - 2943
dist/preview release/customConfigurations/minimalViewer/babylon.module.d.ts


+ 1 - 1
src/babylon.engine.ts

@@ -458,7 +458,7 @@
         }           
 
         public static get Version(): string {
-            return "3.0-beta";
+            return "3.0-rc";
         }
 
         // Updatable statics so stick with vars here