|
@@ -34885,6 +34885,13 @@ var BABYLON;
|
|
enumerable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
configurable: true
|
|
});
|
|
});
|
|
|
|
+ Object.defineProperty(ArcRotateCamera.prototype, "bouncingBehavior", {
|
|
|
|
+ get: function () {
|
|
|
|
+ return this._bouncingBehavior;
|
|
|
|
+ },
|
|
|
|
+ enumerable: true,
|
|
|
|
+ configurable: true
|
|
|
|
+ });
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useBouncingBehavior", {
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useBouncingBehavior", {
|
|
get: function () {
|
|
get: function () {
|
|
return this._bouncingBehavior != null;
|
|
return this._bouncingBehavior != null;
|
|
@@ -34905,6 +34912,13 @@ var BABYLON;
|
|
enumerable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
configurable: true
|
|
});
|
|
});
|
|
|
|
+ Object.defineProperty(ArcRotateCamera.prototype, "framingBehavior", {
|
|
|
|
+ get: function () {
|
|
|
|
+ return this._framingBehavior;
|
|
|
|
+ },
|
|
|
|
+ enumerable: true,
|
|
|
|
+ configurable: true
|
|
|
|
+ });
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useFramingBehavior", {
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useFramingBehavior", {
|
|
get: function () {
|
|
get: function () {
|
|
return this._framingBehavior != null;
|
|
return this._framingBehavior != null;
|
|
@@ -34925,6 +34939,13 @@ var BABYLON;
|
|
enumerable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
configurable: true
|
|
});
|
|
});
|
|
|
|
+ Object.defineProperty(ArcRotateCamera.prototype, "autoRotationBehavior", {
|
|
|
|
+ get: function () {
|
|
|
|
+ return this._autoRotationBehavior;
|
|
|
|
+ },
|
|
|
|
+ enumerable: true,
|
|
|
|
+ configurable: true
|
|
|
|
+ });
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useAutoRotationBehavior", {
|
|
Object.defineProperty(ArcRotateCamera.prototype, "useAutoRotationBehavior", {
|
|
get: function () {
|
|
get: function () {
|
|
return this._autoRotationBehavior != null;
|
|
return this._autoRotationBehavior != null;
|
|
@@ -70499,7 +70520,7 @@ var BABYLON;
|
|
* Gets a value indicating if the camera is currently rotating because of this behavior
|
|
* Gets a value indicating if the camera is currently rotating because of this behavior
|
|
*/
|
|
*/
|
|
get: function () {
|
|
get: function () {
|
|
- return this._cameraRotationSpeed > 0;
|
|
|
|
|
|
+ return Math.abs(this._cameraRotationSpeed) > 0;
|
|
},
|
|
},
|
|
enumerable: true,
|
|
enumerable: true,
|
|
configurable: true
|
|
configurable: true
|