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

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,13 +2,11 @@
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.2
6
6
  */
7
7
 
8
8
  'use strict';
9
9
 
10
- Object.defineProperty(exports, '__esModule', { value: true });
11
-
12
10
  /******************************************************************************
13
11
  Copyright (c) Microsoft Corporation.
14
12
 
@@ -4609,8 +4607,6 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4609
4607
  this._uniformValues = {};
4610
4608
  // @ts-expect-error safe to assign
4611
4609
  this._uniformTextures = {};
4612
- // @ts-expect-error safe to assign
4613
- this.uniformSemantics = {};
4614
4610
  this.assignRenderer = throwDestroyedError;
4615
4611
  this._isDestroyed = true;
4616
4612
  };
@@ -4695,9 +4691,9 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4695
4691
  MarsMaterialDataBlock.prototype.clone = function (name) {
4696
4692
  return new MarsMaterialDataBlock({
4697
4693
  name: name,
4698
- uniformValues: __assign({}, this._uniformValues),
4699
- uniformTextures: __assign({}, this._uniformTextures),
4700
- uniformSemantics: __assign({}, this.uniformSemantics),
4694
+ uniformValues: this._uniformValues,
4695
+ uniformTextures: this._uniformTextures,
4696
+ uniformSemantics: this.uniformSemantics,
4701
4697
  keepUboData: this._keepUboData,
4702
4698
  }, this.renderer);
4703
4699
  };
@@ -5827,7 +5823,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
5827
5823
  return MarsSharedGeometry;
5828
5824
  }(MarsGeometry));
5829
5825
 
5830
- consoleLog('version: ' + "0.1.64-beta.15");
5826
+ consoleLog('version: ' + "0.1.64-beta.2");
5831
5827
 
5832
5828
  exports.GPUBufferOptionsMemoryShared = GPUBufferOptionsMemoryShared;
5833
5829
  exports.Geometry = MarsGeometry;