@predy-js/render-interface 0.1.64-beta.15 → 0.1.64-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @predy-js/render-interface
3
3
  * Description: undefined
4
4
  * Author: undefined
5
- * Version: v0.1.64-beta.15
5
+ * Version: v0.1.64-beta.4
6
6
  */
7
7
 
8
8
  'use strict';
@@ -4609,8 +4609,6 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4609
4609
  this._uniformValues = {};
4610
4610
  // @ts-expect-error safe to assign
4611
4611
  this._uniformTextures = {};
4612
- // @ts-expect-error safe to assign
4613
- this.uniformSemantics = {};
4614
4612
  this.assignRenderer = throwDestroyedError;
4615
4613
  this._isDestroyed = true;
4616
4614
  };
@@ -4695,9 +4693,9 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4695
4693
  MarsMaterialDataBlock.prototype.clone = function (name) {
4696
4694
  return new MarsMaterialDataBlock({
4697
4695
  name: name,
4698
- uniformValues: __assign({}, this._uniformValues),
4699
- uniformTextures: __assign({}, this._uniformTextures),
4700
- uniformSemantics: __assign({}, this.uniformSemantics),
4696
+ uniformValues: this._uniformValues,
4697
+ uniformTextures: this._uniformTextures,
4698
+ uniformSemantics: this.uniformSemantics,
4701
4699
  keepUboData: this._keepUboData,
4702
4700
  }, this.renderer);
4703
4701
  };
@@ -5827,7 +5825,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
5827
5825
  return MarsSharedGeometry;
5828
5826
  }(MarsGeometry));
5829
5827
 
5830
- consoleLog('version: ' + "0.1.64-beta.15");
5828
+ consoleLog('version: ' + "0.1.64-beta.4");
5831
5829
 
5832
5830
  exports.GPUBufferOptionsMemoryShared = GPUBufferOptionsMemoryShared;
5833
5831
  exports.Geometry = MarsGeometry;