فهرست منبع

Fixed Dirty Cell Id

Sebastien Vandenberghe 7 سال پیش
والد
کامیت
dc2461f554
4فایلهای تغییر یافته به همراه16532 افزوده شده و 16520 حذف شده
  1. 8325 8325
      Playground/babylon.d.txt
  2. 8194 8194
      dist/preview release/babylon.d.ts
  3. 12 0
      dist/preview release/gui/babylon.gui.js
  4. 1 1
      dist/preview release/gui/babylon.gui.min.js

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 8325 - 8325
Playground/babylon.d.txt


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 8194 - 8194
dist/preview release/babylon.d.ts


+ 12 - 0
dist/preview release/gui/babylon.gui.js

@@ -3523,7 +3523,11 @@ var BABYLON;
                     return this._cellWidth;
                 },
                 set: function (value) {
+                    if (this._cellWidth === value) {
+                        return;
+                    }
                     this._cellWidth = value;
+                    this._markAsDirty();
                 },
                 enumerable: true,
                 configurable: true
@@ -3533,7 +3537,11 @@ var BABYLON;
                     return this._cellHeight;
                 },
                 set: function (value) {
+                    if (this._cellHeight === value) {
+                        return;
+                    }
                     this._cellHeight = value;
+                    this._markAsDirty();
                 },
                 enumerable: true,
                 configurable: true
@@ -3543,7 +3551,11 @@ var BABYLON;
                     return this._cellId;
                 },
                 set: function (value) {
+                    if (this._cellId === value) {
+                        return;
+                    }
                     this._cellId = value;
+                    this._markAsDirty();
                 },
                 enumerable: true,
                 configurable: true

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 1
dist/preview release/gui/babylon.gui.min.js