@predy-js/render-interface 0.1.64-beta.10 → 0.1.64-beta.12

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.mjs 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.10
5
+ * Version: v0.1.64-beta.12
6
6
  */
7
7
 
8
8
  /******************************************************************************
@@ -4605,6 +4605,8 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4605
4605
  this._uniformValues = {};
4606
4606
  // @ts-expect-error safe to assign
4607
4607
  this._uniformTextures = {};
4608
+ // @ts-expect-error safe to assign
4609
+ this.uniformSemantics = {};
4608
4610
  this.assignRenderer = throwDestroyedError;
4609
4611
  this._isDestroyed = true;
4610
4612
  };
@@ -4689,9 +4691,9 @@ var MarsMaterialDataBlock = /** @class */ (function () {
4689
4691
  MarsMaterialDataBlock.prototype.clone = function (name) {
4690
4692
  return new MarsMaterialDataBlock({
4691
4693
  name: name,
4692
- uniformValues: this._uniformValues,
4693
- uniformTextures: this._uniformTextures,
4694
- uniformSemantics: this.uniformSemantics,
4694
+ uniformValues: __assign({}, this._uniformValues),
4695
+ uniformTextures: __assign({}, this._uniformTextures),
4696
+ uniformSemantics: __assign({}, this.uniformSemantics),
4695
4697
  keepUboData: this._keepUboData,
4696
4698
  }, this.renderer);
4697
4699
  };
@@ -5821,7 +5823,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
5821
5823
  return MarsSharedGeometry;
5822
5824
  }(MarsGeometry));
5823
5825
 
5824
- consoleLog('version: ' + "0.1.64-beta.10");
5826
+ consoleLog('version: ' + "0.1.64-beta.12");
5825
5827
 
5826
5828
  export { DestroyOptions, GPUBufferOptionsMemoryShared, MarsGeometry as Geometry, MarsInstancedMesh as InstancedMesh, MarsTextureFactory, MarsMaterial as Material, MarsMaterialDataBlock as MaterialDataBlock, MarsMesh as Mesh, MarsRenderFrame as RenderFrame, MarsRenderPass as RenderPass, RenderPassAttachmentStorageType, RenderPassDestroyAttachmentType, RenderPassMeshOrder, RenderPassPriorityNormal, RenderPassPriorityPostprocess, RenderPassPriorityPrepare, MarsRenderer as Renderer, ShaderCompileResultStatus, ShaderLibraryEmpty, MarsSharedGeometry as SharedGeometry, MarsTexture as Texture, TextureLoadAction, TextureSourceType, TextureStoreAction, constants, getDefaultGPUCapability, getDefaultTextureFactory, setDefaultTextureFactory };
5827
5829
  //# sourceMappingURL=index.mjs.map