@dcl-regenesislabs/bevy-explorer-web 0.1.0-18776646102.commit-911ddc6 → 0.1.0-18817670087.commit-74afb7e
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/.env +1 -1
- package/asset_loader.js +1 -1
- package/index.html +2 -2
- package/package.json +3 -3
- package/pkg/webgpu_build.js +35 -31
- package/pkg/webgpu_build_bg.wasm +0 -0
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
1
|
+
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-18817670087.commit-74afb7e"
|
package/asset_loader.js
CHANGED
|
@@ -14,7 +14,7 @@ self.onmessage = async (event) => {
|
|
|
14
14
|
try {
|
|
15
15
|
// init wasm
|
|
16
16
|
console.log("[Asset Loader] init wasm");
|
|
17
|
-
await init({
|
|
17
|
+
await init({ module_or_path: compiledModule, memory: sharedMemory });
|
|
18
18
|
console.log("[Asset Loader] init asset load thread");
|
|
19
19
|
await wasm_bindgen_exports.init_asset_load_thread();
|
|
20
20
|
console.log("[Asset Loader] running");
|
package/index.html
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
</style>
|
|
103
103
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
104
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
104
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-18817670087.commit-74afb7e";</script>
|
|
105
105
|
</head>
|
|
106
106
|
<body>
|
|
107
107
|
<div id="header" class="container">
|
|
@@ -130,6 +130,6 @@
|
|
|
130
130
|
</div>
|
|
131
131
|
<script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
|
|
132
132
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
133
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
133
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-18817670087.commit-74afb7e/main.js"></script>
|
|
134
134
|
</body>
|
|
135
135
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl-regenesislabs/bevy-explorer-web",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-18817670087.commit-74afb7e",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node ./scripts/prebuild.js"
|
|
6
6
|
},
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/decentraland/bevy-explorer.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
12
|
-
"commit": "
|
|
11
|
+
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-18817670087.commit-74afb7e",
|
|
12
|
+
"commit": "74afb7e6790839eda2d133a307ae4cd9557e95bd"
|
|
13
13
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -1331,7 +1331,7 @@ function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
|
1331
1331
|
wasm.closure131418_externref_shim(arg0, arg1, arg2);
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
|
-
function
|
|
1334
|
+
function __wbg_adapter_1514(arg0, arg1, arg2, arg3) {
|
|
1335
1335
|
wasm.closure134322_externref_shim(arg0, arg1, arg2, arg3);
|
|
1336
1336
|
}
|
|
1337
1337
|
|
|
@@ -1657,6 +1657,14 @@ function __wbg_get_imports() {
|
|
|
1657
1657
|
const ret = arg0.code;
|
|
1658
1658
|
return ret;
|
|
1659
1659
|
};
|
|
1660
|
+
imports.wbg.__wbg_codedHeight_68cd784ecbc3b742 = function(arg0) {
|
|
1661
|
+
const ret = arg0.codedHeight;
|
|
1662
|
+
return ret;
|
|
1663
|
+
};
|
|
1664
|
+
imports.wbg.__wbg_codedWidth_756904fbc3fc7465 = function(arg0) {
|
|
1665
|
+
const ret = arg0.codedWidth;
|
|
1666
|
+
return ret;
|
|
1667
|
+
};
|
|
1660
1668
|
imports.wbg.__wbg_configure_ad5aa321838c8e3b = function() { return handleError(function (arg0, arg1) {
|
|
1661
1669
|
arg0.configure(arg1);
|
|
1662
1670
|
}, arguments) };
|
|
@@ -2626,7 +2634,7 @@ function __wbg_get_imports() {
|
|
|
2626
2634
|
const a = state0.a;
|
|
2627
2635
|
state0.a = 0;
|
|
2628
2636
|
try {
|
|
2629
|
-
return
|
|
2637
|
+
return __wbg_adapter_1514(a, state0.b, arg0, arg1);
|
|
2630
2638
|
} finally {
|
|
2631
2639
|
state0.a = a;
|
|
2632
2640
|
}
|
|
@@ -2717,6 +2725,10 @@ function __wbg_get_imports() {
|
|
|
2717
2725
|
const ret = new lAudioContext(arg0);
|
|
2718
2726
|
return ret;
|
|
2719
2727
|
}, arguments) };
|
|
2728
|
+
imports.wbg.__wbg_newwithhtmlvideoelement_11b4b93f00b2ca31 = function() { return handleError(function (arg0) {
|
|
2729
|
+
const ret = new VideoFrame(arg0);
|
|
2730
|
+
return ret;
|
|
2731
|
+
}, arguments) };
|
|
2720
2732
|
imports.wbg.__wbg_newwithlength_5a5efe313cfd59f1 = function(arg0) {
|
|
2721
2733
|
const ret = new Float32Array(arg0 >>> 0);
|
|
2722
2734
|
return ret;
|
|
@@ -4011,14 +4023,6 @@ function __wbg_get_imports() {
|
|
|
4011
4023
|
const ret = arg0.versions;
|
|
4012
4024
|
return ret;
|
|
4013
4025
|
};
|
|
4014
|
-
imports.wbg.__wbg_videoHeight_3a43327a766c1f03 = function(arg0) {
|
|
4015
|
-
const ret = arg0.videoHeight;
|
|
4016
|
-
return ret;
|
|
4017
|
-
};
|
|
4018
|
-
imports.wbg.__wbg_videoWidth_4b400cf6f4744a4d = function(arg0) {
|
|
4019
|
-
const ret = arg0.videoWidth;
|
|
4020
|
-
return ret;
|
|
4021
|
-
};
|
|
4022
4026
|
imports.wbg.__wbg_visibilityState_f3cc18a6f3831137 = function(arg0) {
|
|
4023
4027
|
const ret = arg0.visibilityState;
|
|
4024
4028
|
return (__wbindgen_enum_VisibilityState.indexOf(ret) + 1 || 3) - 1;
|
|
@@ -4113,87 +4117,87 @@ function __wbg_get_imports() {
|
|
|
4113
4117
|
const ret = false;
|
|
4114
4118
|
return ret;
|
|
4115
4119
|
};
|
|
4116
|
-
imports.wbg.
|
|
4120
|
+
imports.wbg.__wbindgen_closure_wrapper149202 = function(arg0, arg1, arg2) {
|
|
4117
4121
|
const ret = makeMutClosure(arg0, arg1, 116487, __wbg_adapter_108);
|
|
4118
4122
|
return ret;
|
|
4119
4123
|
};
|
|
4120
|
-
imports.wbg.
|
|
4124
|
+
imports.wbg.__wbindgen_closure_wrapper169537 = function(arg0, arg1, arg2) {
|
|
4121
4125
|
const ret = makeMutClosure(arg0, arg1, 131419, __wbg_adapter_111);
|
|
4122
4126
|
return ret;
|
|
4123
4127
|
};
|
|
4124
|
-
imports.wbg.
|
|
4128
|
+
imports.wbg.__wbindgen_closure_wrapper169539 = function(arg0, arg1, arg2) {
|
|
4125
4129
|
const ret = makeMutClosure(arg0, arg1, 131419, __wbg_adapter_111);
|
|
4126
4130
|
return ret;
|
|
4127
4131
|
};
|
|
4128
|
-
imports.wbg.
|
|
4132
|
+
imports.wbg.__wbindgen_closure_wrapper20076 = function(arg0, arg1, arg2) {
|
|
4129
4133
|
const ret = makeMutClosure(arg0, arg1, 15207, __wbg_adapter_62);
|
|
4130
4134
|
return ret;
|
|
4131
4135
|
};
|
|
4132
|
-
imports.wbg.
|
|
4136
|
+
imports.wbg.__wbindgen_closure_wrapper63902 = function(arg0, arg1, arg2) {
|
|
4133
4137
|
const ret = makeMutClosure(arg0, arg1, 47574, __wbg_adapter_65);
|
|
4134
4138
|
return ret;
|
|
4135
4139
|
};
|
|
4136
|
-
imports.wbg.
|
|
4140
|
+
imports.wbg.__wbindgen_closure_wrapper64090 = function(arg0, arg1, arg2) {
|
|
4137
4141
|
const ret = makeMutClosure(arg0, arg1, 47679, __wbg_adapter_68);
|
|
4138
4142
|
return ret;
|
|
4139
4143
|
};
|
|
4140
|
-
imports.wbg.
|
|
4144
|
+
imports.wbg.__wbindgen_closure_wrapper68276 = function(arg0, arg1, arg2) {
|
|
4141
4145
|
const ret = makeMutClosure(arg0, arg1, 50830, __wbg_adapter_71);
|
|
4142
4146
|
return ret;
|
|
4143
4147
|
};
|
|
4144
|
-
imports.wbg.
|
|
4148
|
+
imports.wbg.__wbindgen_closure_wrapper70314 = function(arg0, arg1, arg2) {
|
|
4145
4149
|
const ret = makeMutClosure(arg0, arg1, 51477, __wbg_adapter_74);
|
|
4146
4150
|
return ret;
|
|
4147
4151
|
};
|
|
4148
|
-
imports.wbg.
|
|
4152
|
+
imports.wbg.__wbindgen_closure_wrapper70316 = function(arg0, arg1, arg2) {
|
|
4149
4153
|
const ret = makeMutClosure(arg0, arg1, 51477, __wbg_adapter_74);
|
|
4150
4154
|
return ret;
|
|
4151
4155
|
};
|
|
4152
|
-
imports.wbg.
|
|
4156
|
+
imports.wbg.__wbindgen_closure_wrapper70318 = function(arg0, arg1, arg2) {
|
|
4153
4157
|
const ret = makeMutClosure(arg0, arg1, 51477, __wbg_adapter_74);
|
|
4154
4158
|
return ret;
|
|
4155
4159
|
};
|
|
4156
|
-
imports.wbg.
|
|
4160
|
+
imports.wbg.__wbindgen_closure_wrapper73086 = function(arg0, arg1, arg2) {
|
|
4157
4161
|
const ret = makeMutClosure(arg0, arg1, 53828, __wbg_adapter_81);
|
|
4158
4162
|
return ret;
|
|
4159
4163
|
};
|
|
4160
|
-
imports.wbg.
|
|
4164
|
+
imports.wbg.__wbindgen_closure_wrapper74421 = function(arg0, arg1, arg2) {
|
|
4161
4165
|
const ret = makeMutClosure(arg0, arg1, 54786, __wbg_adapter_84);
|
|
4162
4166
|
return ret;
|
|
4163
4167
|
};
|
|
4164
|
-
imports.wbg.
|
|
4168
|
+
imports.wbg.__wbindgen_closure_wrapper77066 = function(arg0, arg1, arg2) {
|
|
4165
4169
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4166
4170
|
return ret;
|
|
4167
4171
|
};
|
|
4168
|
-
imports.wbg.
|
|
4172
|
+
imports.wbg.__wbindgen_closure_wrapper77068 = function(arg0, arg1, arg2) {
|
|
4169
4173
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4170
4174
|
return ret;
|
|
4171
4175
|
};
|
|
4172
|
-
imports.wbg.
|
|
4176
|
+
imports.wbg.__wbindgen_closure_wrapper77070 = function(arg0, arg1, arg2) {
|
|
4173
4177
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4174
4178
|
return ret;
|
|
4175
4179
|
};
|
|
4176
|
-
imports.wbg.
|
|
4180
|
+
imports.wbg.__wbindgen_closure_wrapper77072 = function(arg0, arg1, arg2) {
|
|
4177
4181
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4178
4182
|
return ret;
|
|
4179
4183
|
};
|
|
4180
|
-
imports.wbg.
|
|
4184
|
+
imports.wbg.__wbindgen_closure_wrapper77074 = function(arg0, arg1, arg2) {
|
|
4181
4185
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4182
4186
|
return ret;
|
|
4183
4187
|
};
|
|
4184
|
-
imports.wbg.
|
|
4188
|
+
imports.wbg.__wbindgen_closure_wrapper77076 = function(arg0, arg1, arg2) {
|
|
4185
4189
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_98);
|
|
4186
4190
|
return ret;
|
|
4187
4191
|
};
|
|
4188
|
-
imports.wbg.
|
|
4192
|
+
imports.wbg.__wbindgen_closure_wrapper77078 = function(arg0, arg1, arg2) {
|
|
4189
4193
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4190
4194
|
return ret;
|
|
4191
4195
|
};
|
|
4192
|
-
imports.wbg.
|
|
4196
|
+
imports.wbg.__wbindgen_closure_wrapper77080 = function(arg0, arg1, arg2) {
|
|
4193
4197
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_87);
|
|
4194
4198
|
return ret;
|
|
4195
4199
|
};
|
|
4196
|
-
imports.wbg.
|
|
4200
|
+
imports.wbg.__wbindgen_closure_wrapper77082 = function(arg0, arg1, arg2) {
|
|
4197
4201
|
const ret = makeMutClosure(arg0, arg1, 56439, __wbg_adapter_105);
|
|
4198
4202
|
return ret;
|
|
4199
4203
|
};
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|