@predy-js/render-interface 0.1.65-beta.5 → 0.1.65-beta.6
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 +2 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/dist/statistic.js +1 -1
- package/dist/types/native/PredyNativeInternal.d.ts +2 -1
- package/dist/types/native/RendererInternal.d.ts +2 -1
- package/dist/types/native/TextureInternal.d.ts +0 -2
- package/package.json +1 -1
- package/types/native/PredyNativeInternal.ts +2 -1
- package/types/native/RendererInternal.ts +2 -1
- package/types/native/TextureInternal.ts +0 -3
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.65-beta.
|
5
|
+
* Version: v0.1.65-beta.6
|
6
6
|
*/
|
7
7
|
|
8
8
|
'use strict';
|
@@ -3919,15 +3919,12 @@ var MarsTexture = /** @class */ (function () {
|
|
3919
3919
|
}, options);
|
3920
3920
|
if (!opt.sourceType) {
|
3921
3921
|
if (opt.image) {
|
3922
|
-
// @ts-expect-error
|
3923
3922
|
opt.sourceType = exports.TextureSourceType.image;
|
3924
3923
|
}
|
3925
3924
|
else if (opt.data) {
|
3926
|
-
// @ts-expect-error
|
3927
3925
|
opt.sourceType = exports.TextureSourceType.data;
|
3928
3926
|
}
|
3929
3927
|
else if (opt.video) {
|
3930
|
-
// @ts-expect-error
|
3931
3928
|
opt.sourceType = exports.TextureSourceType.video;
|
3932
3929
|
}
|
3933
3930
|
else {
|
@@ -5833,7 +5830,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5833
5830
|
return MarsSharedGeometry;
|
5834
5831
|
}(MarsGeometry));
|
5835
5832
|
|
5836
|
-
consoleLog('version: ' + "0.1.65-beta.
|
5833
|
+
consoleLog('version: ' + "0.1.65-beta.6");
|
5837
5834
|
|
5838
5835
|
exports.GPUBufferOptionsMemoryShared = GPUBufferOptionsMemoryShared;
|
5839
5836
|
exports.Geometry = MarsGeometry;
|