|
@@ -330,6 +330,9 @@ Object.defineProperty(AbstractMesh.prototype, "isOcclusionQueryInProgress", {
|
|
get: function(this: AbstractMesh) {
|
|
get: function(this: AbstractMesh) {
|
|
return this._occlusionDataStorage.isOcclusionQueryInProgress;
|
|
return this._occlusionDataStorage.isOcclusionQueryInProgress;
|
|
},
|
|
},
|
|
|
|
+ set: function(this: AbstractMesh, value: boolean) {
|
|
|
|
+ this._occlusionDataStorage.isOcclusionQueryInProgress = value;
|
|
|
|
+ },
|
|
enumerable: false,
|
|
enumerable: false,
|
|
configurable: true
|
|
configurable: true
|
|
});
|
|
});
|