@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 +5 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -7
- package/dist/index.mjs.map +1 -1
- package/dist/statistic.js +1 -1
- package/dist/types/native/AndGLContext.d.ts +0 -9
- package/dist/types/native/RendererInternal.d.ts +0 -3
- package/dist/types/native/index.d.ts +0 -3
- package/package.json +1 -1
- package/types/native/AndGLContext.ts +0 -12
- package/types/native/MaterialInternal.ts +0 -1
- package/types/native/RendererInternal.ts +0 -3
- package/types/native/index.ts +0 -3
- package/dist/types/native/PredyNativeInternal.d.ts +0 -5
- package/dist/types/native/PredyNativeModule.d.ts +0 -3
- package/types/native/PredyNativeInternal.ts +0 -6
- package/types/native/PredyNativeModule.ts +0 -4
- package/types/native/declare.d.ts +0 -5
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.
|
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:
|
4699
|
-
uniformTextures:
|
4700
|
-
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.
|
5828
|
+
consoleLog('version: ' + "0.1.64-beta.4");
|
5831
5829
|
|
5832
5830
|
exports.GPUBufferOptionsMemoryShared = GPUBufferOptionsMemoryShared;
|
5833
5831
|
exports.Geometry = MarsGeometry;
|