@predy-js/render-interface 0.1.61-beta.1 → 0.1.61-beta.10
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 +3 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/render/MarsMaterialDataBlock.d.ts +4 -1
- package/dist/statistic.js +1 -1
- package/dist/types/Material.d.ts +6 -0
- package/dist/types/ShaderLibrary.d.ts +4 -4
- package/dist/types/native/TextureInternal.d.ts +1 -0
- package/package.json +1 -1
- package/types/Material.ts +3 -0
- package/types/ShaderLibrary.ts +4 -4
- package/types/native/TextureInternal.ts +1 -0
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.61-beta.
|
5
|
+
* Version: v0.1.61-beta.10
|
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
|
|
@@ -4471,6 +4469,7 @@ var MarsMaterialDataBlock = /** @class */ (function () {
|
|
4471
4469
|
this.uboBufferMap = {};
|
4472
4470
|
this._uniformValueRanges = {};
|
4473
4471
|
this._keepUboData = !!props.keepUboData;
|
4472
|
+
this.uniformSemantics = props.uniformSemantics;
|
4474
4473
|
if (props.uniformValues) {
|
4475
4474
|
this.setUniformValues(props.uniformValues);
|
4476
4475
|
}
|
@@ -5730,7 +5729,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5730
5729
|
return MarsSharedGeometry;
|
5731
5730
|
}(MarsGeometry));
|
5732
5731
|
|
5733
|
-
consoleLog('version: ' + "0.1.61-beta.
|
5732
|
+
consoleLog('version: ' + "0.1.61-beta.10");
|
5734
5733
|
|
5735
5734
|
exports.Geometry = MarsGeometry;
|
5736
5735
|
exports.InstancedMesh = MarsInstancedMesh;
|