@dcl-regenesislabs/bevy-explorer-web 0.1.0-21365618462.commit-6543b5a → 0.1.0-21394940294.commit-7449e4c
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/index.html +2 -2
- package/package.json +3 -3
- package/pkg/webgpu_build.d.ts +13 -9
- package/pkg/webgpu_build.js +76 -55
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +11 -9
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-21394940294.commit-7449e4c"
|
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-21394940294.commit-7449e4c";</script>
|
|
105
105
|
</head>
|
|
106
106
|
<body>
|
|
107
107
|
<div id="header" class="container">
|
|
@@ -138,6 +138,6 @@
|
|
|
138
138
|
</div>
|
|
139
139
|
<script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
|
|
140
140
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
141
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
141
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21394940294.commit-7449e4c/main.js"></script>
|
|
142
142
|
</body>
|
|
143
143
|
</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-21394940294.commit-7449e4c",
|
|
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-21394940294.commit-7449e4c",
|
|
12
|
+
"commit": "7449e4c101a25ff88411e9ed0f4d58f9a20779d1"
|
|
13
13
|
}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export function op_get_mic_state(state: WorkerContext): Promise<any>;
|
|
|
34
34
|
export function op_set_mic_enabled(state: WorkerContext, enabled: boolean): Promise<void>;
|
|
35
35
|
export function op_get_voice_stream(state: WorkerContext): Promise<number>;
|
|
36
36
|
export function op_read_voice_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
37
|
+
export function op_get_scene_loading_ui_stream(state: WorkerContext): Promise<number>;
|
|
37
38
|
export function op_read_chat_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
38
39
|
export function op_send_chat(state: WorkerContext, message: string, channel: string): void;
|
|
39
40
|
export function op_get_profile_extras(state: WorkerContext): Promise<any>;
|
|
@@ -43,6 +44,7 @@ export function op_read_permission_request_stream(state: WorkerContext, rid: num
|
|
|
43
44
|
export function op_get_permission_used_stream(state: WorkerContext): Promise<number>;
|
|
44
45
|
export function op_read_permission_used_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
45
46
|
export function op_set_single_permission(state: WorkerContext, id: number, allow: boolean): void;
|
|
47
|
+
export function op_read_scene_loading_ui_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
46
48
|
export function op_motd(state: WorkerContext): Promise<string>;
|
|
47
49
|
export function op_get_current_login(state: WorkerContext): string | undefined;
|
|
48
50
|
export function op_get_previous_login(state: WorkerContext): Promise<string | undefined>;
|
|
@@ -234,6 +236,7 @@ export interface InitOutput {
|
|
|
234
236
|
readonly op_get_players_in_scene: (a: number) => any;
|
|
235
237
|
readonly op_get_previous_login: (a: number) => any;
|
|
236
238
|
readonly op_get_profile_extras: (a: number) => any;
|
|
239
|
+
readonly op_get_scene_loading_ui_stream: (a: number) => any;
|
|
237
240
|
readonly op_get_system_action_stream: (a: number) => any;
|
|
238
241
|
readonly op_get_texture_size: (a: number, b: number, c: number) => any;
|
|
239
242
|
readonly op_get_user_data: (a: number) => any;
|
|
@@ -260,6 +263,7 @@ export interface InitOutput {
|
|
|
260
263
|
readonly op_read_file: (a: number, b: number, c: number) => any;
|
|
261
264
|
readonly op_read_permission_request_stream: (a: number, b: number) => any;
|
|
262
265
|
readonly op_read_permission_used_stream: (a: number, b: number) => any;
|
|
266
|
+
readonly op_read_scene_loading_ui_stream: (a: number, b: number) => any;
|
|
263
267
|
readonly op_read_system_action_stream: (a: number, b: number) => any;
|
|
264
268
|
readonly op_read_voice_stream: (a: number, b: number) => any;
|
|
265
269
|
readonly op_realm_information: (a: number) => any;
|
|
@@ -305,20 +309,20 @@ export interface InitOutput {
|
|
|
305
309
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
306
310
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
307
311
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
308
|
-
readonly
|
|
309
|
-
readonly
|
|
310
|
-
readonly
|
|
312
|
+
readonly closure15507_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
313
|
+
readonly closure41103_externref_shim: (a: number, b: number, c: any) => void;
|
|
314
|
+
readonly closure50238_externref_shim: (a: number, b: number, c: any) => void;
|
|
311
315
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
312
316
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
313
|
-
readonly
|
|
317
|
+
readonly closure53892_externref_shim: (a: number, b: number, c: any) => void;
|
|
314
318
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
315
319
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
316
|
-
readonly
|
|
317
|
-
readonly
|
|
320
|
+
readonly closure58962_externref_shim: (a: number, b: number, c: any) => void;
|
|
321
|
+
readonly closure58966_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
318
322
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
319
|
-
readonly
|
|
320
|
-
readonly
|
|
321
|
-
readonly
|
|
323
|
+
readonly closure118917_externref_shim: (a: number, b: number, c: any) => void;
|
|
324
|
+
readonly closure134180_externref_shim: (a: number, b: number, c: any) => void;
|
|
325
|
+
readonly closure137073_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
322
326
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
323
327
|
readonly __wbindgen_start: (a: number) => void;
|
|
324
328
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -622,6 +622,16 @@ export function op_read_voice_stream(state, rid) {
|
|
|
622
622
|
return ret;
|
|
623
623
|
}
|
|
624
624
|
|
|
625
|
+
/**
|
|
626
|
+
* @param {WorkerContext} state
|
|
627
|
+
* @returns {Promise<number>}
|
|
628
|
+
*/
|
|
629
|
+
export function op_get_scene_loading_ui_stream(state) {
|
|
630
|
+
_assertClass(state, WorkerContext);
|
|
631
|
+
const ret = wasm.op_get_scene_loading_ui_stream(state.__wbg_ptr);
|
|
632
|
+
return ret;
|
|
633
|
+
}
|
|
634
|
+
|
|
625
635
|
/**
|
|
626
636
|
* @param {WorkerContext} state
|
|
627
637
|
* @param {number} rid
|
|
@@ -717,6 +727,17 @@ export function op_set_single_permission(state, id, allow) {
|
|
|
717
727
|
wasm.op_set_single_permission(state.__wbg_ptr, id, allow);
|
|
718
728
|
}
|
|
719
729
|
|
|
730
|
+
/**
|
|
731
|
+
* @param {WorkerContext} state
|
|
732
|
+
* @param {number} rid
|
|
733
|
+
* @returns {Promise<any>}
|
|
734
|
+
*/
|
|
735
|
+
export function op_read_scene_loading_ui_stream(state, rid) {
|
|
736
|
+
_assertClass(state, WorkerContext);
|
|
737
|
+
const ret = wasm.op_read_scene_loading_ui_stream(state.__wbg_ptr, rid);
|
|
738
|
+
return ret;
|
|
739
|
+
}
|
|
740
|
+
|
|
720
741
|
/**
|
|
721
742
|
* @param {WorkerContext} state
|
|
722
743
|
* @returns {Promise<string>}
|
|
@@ -1389,15 +1410,15 @@ export function gpu_cache_hash() {
|
|
|
1389
1410
|
}
|
|
1390
1411
|
|
|
1391
1412
|
function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
|
|
1392
|
-
wasm.
|
|
1413
|
+
wasm.closure15507_externref_shim(arg0, arg1, arg2, arg3);
|
|
1393
1414
|
}
|
|
1394
1415
|
|
|
1395
1416
|
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
1396
|
-
wasm.
|
|
1417
|
+
wasm.closure41103_externref_shim(arg0, arg1, arg2);
|
|
1397
1418
|
}
|
|
1398
1419
|
|
|
1399
1420
|
function __wbg_adapter_68(arg0, arg1, arg2) {
|
|
1400
|
-
wasm.
|
|
1421
|
+
wasm.closure50238_externref_shim(arg0, arg1, arg2);
|
|
1401
1422
|
}
|
|
1402
1423
|
|
|
1403
1424
|
function __wbg_adapter_71(arg0, arg1) {
|
|
@@ -1409,7 +1430,7 @@ function __wbg_adapter_74(arg0, arg1) {
|
|
|
1409
1430
|
}
|
|
1410
1431
|
|
|
1411
1432
|
function __wbg_adapter_77(arg0, arg1, arg2) {
|
|
1412
|
-
wasm.
|
|
1433
|
+
wasm.closure53892_externref_shim(arg0, arg1, arg2);
|
|
1413
1434
|
}
|
|
1414
1435
|
|
|
1415
1436
|
function __wbg_adapter_84(arg0, arg1) {
|
|
@@ -1421,11 +1442,11 @@ function __wbg_adapter_87(arg0, arg1) {
|
|
|
1421
1442
|
}
|
|
1422
1443
|
|
|
1423
1444
|
function __wbg_adapter_90(arg0, arg1, arg2) {
|
|
1424
|
-
wasm.
|
|
1445
|
+
wasm.closure58962_externref_shim(arg0, arg1, arg2);
|
|
1425
1446
|
}
|
|
1426
1447
|
|
|
1427
1448
|
function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
|
|
1428
|
-
wasm.
|
|
1449
|
+
wasm.closure58966_externref_shim(arg0, arg1, arg2, arg3);
|
|
1429
1450
|
}
|
|
1430
1451
|
|
|
1431
1452
|
function __wbg_adapter_108(arg0, arg1) {
|
|
@@ -1433,15 +1454,15 @@ function __wbg_adapter_108(arg0, arg1) {
|
|
|
1433
1454
|
}
|
|
1434
1455
|
|
|
1435
1456
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1436
|
-
wasm.
|
|
1457
|
+
wasm.closure118917_externref_shim(arg0, arg1, arg2);
|
|
1437
1458
|
}
|
|
1438
1459
|
|
|
1439
1460
|
function __wbg_adapter_114(arg0, arg1, arg2) {
|
|
1440
|
-
wasm.
|
|
1461
|
+
wasm.closure134180_externref_shim(arg0, arg1, arg2);
|
|
1441
1462
|
}
|
|
1442
1463
|
|
|
1443
|
-
function
|
|
1444
|
-
wasm.
|
|
1464
|
+
function __wbg_adapter_1593(arg0, arg1, arg2, arg3) {
|
|
1465
|
+
wasm.closure137073_externref_shim(arg0, arg1, arg2, arg3);
|
|
1445
1466
|
}
|
|
1446
1467
|
|
|
1447
1468
|
/**
|
|
@@ -3145,7 +3166,7 @@ function __wbg_get_imports() {
|
|
|
3145
3166
|
const a = state0.a;
|
|
3146
3167
|
state0.a = 0;
|
|
3147
3168
|
try {
|
|
3148
|
-
return
|
|
3169
|
+
return __wbg_adapter_1593(a, state0.b, arg0, arg1);
|
|
3149
3170
|
} finally {
|
|
3150
3171
|
state0.a = a;
|
|
3151
3172
|
}
|
|
@@ -4746,92 +4767,92 @@ function __wbg_get_imports() {
|
|
|
4746
4767
|
const ret = false;
|
|
4747
4768
|
return ret;
|
|
4748
4769
|
};
|
|
4749
|
-
imports.wbg.
|
|
4750
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4770
|
+
imports.wbg.__wbindgen_closure_wrapper150388 = function(arg0, arg1, arg2) {
|
|
4771
|
+
const ret = makeMutClosure(arg0, arg1, 118918, __wbg_adapter_111);
|
|
4751
4772
|
return ret;
|
|
4752
4773
|
};
|
|
4753
|
-
imports.wbg.
|
|
4754
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4774
|
+
imports.wbg.__wbindgen_closure_wrapper171196 = function(arg0, arg1, arg2) {
|
|
4775
|
+
const ret = makeMutClosure(arg0, arg1, 134181, __wbg_adapter_114);
|
|
4755
4776
|
return ret;
|
|
4756
4777
|
};
|
|
4757
|
-
imports.wbg.
|
|
4758
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4778
|
+
imports.wbg.__wbindgen_closure_wrapper171198 = function(arg0, arg1, arg2) {
|
|
4779
|
+
const ret = makeMutClosure(arg0, arg1, 134181, __wbg_adapter_114);
|
|
4759
4780
|
return ret;
|
|
4760
4781
|
};
|
|
4761
|
-
imports.wbg.
|
|
4762
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4782
|
+
imports.wbg.__wbindgen_closure_wrapper19899 = function(arg0, arg1, arg2) {
|
|
4783
|
+
const ret = makeMutClosure(arg0, arg1, 15508, __wbg_adapter_62);
|
|
4763
4784
|
return ret;
|
|
4764
4785
|
};
|
|
4765
|
-
imports.wbg.
|
|
4766
|
-
const ret = makeClosure(arg0, arg1,
|
|
4786
|
+
imports.wbg.__wbindgen_closure_wrapper53815 = function(arg0, arg1, arg2) {
|
|
4787
|
+
const ret = makeClosure(arg0, arg1, 41104, __wbg_adapter_65);
|
|
4767
4788
|
return ret;
|
|
4768
4789
|
};
|
|
4769
|
-
imports.wbg.
|
|
4770
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4790
|
+
imports.wbg.__wbindgen_closure_wrapper66311 = function(arg0, arg1, arg2) {
|
|
4791
|
+
const ret = makeMutClosure(arg0, arg1, 50239, __wbg_adapter_68);
|
|
4771
4792
|
return ret;
|
|
4772
4793
|
};
|
|
4773
|
-
imports.wbg.
|
|
4774
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4794
|
+
imports.wbg.__wbindgen_closure_wrapper66450 = function(arg0, arg1, arg2) {
|
|
4795
|
+
const ret = makeMutClosure(arg0, arg1, 50342, __wbg_adapter_71);
|
|
4775
4796
|
return ret;
|
|
4776
4797
|
};
|
|
4777
|
-
imports.wbg.
|
|
4778
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4798
|
+
imports.wbg.__wbindgen_closure_wrapper70272 = function(arg0, arg1, arg2) {
|
|
4799
|
+
const ret = makeMutClosure(arg0, arg1, 53279, __wbg_adapter_74);
|
|
4779
4800
|
return ret;
|
|
4780
4801
|
};
|
|
4781
|
-
imports.wbg.
|
|
4782
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4802
|
+
imports.wbg.__wbindgen_closure_wrapper71470 = function(arg0, arg1, arg2) {
|
|
4803
|
+
const ret = makeMutClosure(arg0, arg1, 53893, __wbg_adapter_77);
|
|
4783
4804
|
return ret;
|
|
4784
4805
|
};
|
|
4785
|
-
imports.wbg.
|
|
4786
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4806
|
+
imports.wbg.__wbindgen_closure_wrapper71472 = function(arg0, arg1, arg2) {
|
|
4807
|
+
const ret = makeMutClosure(arg0, arg1, 53893, __wbg_adapter_77);
|
|
4787
4808
|
return ret;
|
|
4788
4809
|
};
|
|
4789
|
-
imports.wbg.
|
|
4790
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4810
|
+
imports.wbg.__wbindgen_closure_wrapper71474 = function(arg0, arg1, arg2) {
|
|
4811
|
+
const ret = makeMutClosure(arg0, arg1, 53893, __wbg_adapter_77);
|
|
4791
4812
|
return ret;
|
|
4792
4813
|
};
|
|
4793
|
-
imports.wbg.
|
|
4794
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4814
|
+
imports.wbg.__wbindgen_closure_wrapper76037 = function(arg0, arg1, arg2) {
|
|
4815
|
+
const ret = makeMutClosure(arg0, arg1, 57125, __wbg_adapter_84);
|
|
4795
4816
|
return ret;
|
|
4796
4817
|
};
|
|
4797
|
-
imports.wbg.
|
|
4798
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4818
|
+
imports.wbg.__wbindgen_closure_wrapper77072 = function(arg0, arg1, arg2) {
|
|
4819
|
+
const ret = makeMutClosure(arg0, arg1, 57506, __wbg_adapter_87);
|
|
4799
4820
|
return ret;
|
|
4800
4821
|
};
|
|
4801
|
-
imports.wbg.
|
|
4802
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4822
|
+
imports.wbg.__wbindgen_closure_wrapper79217 = function(arg0, arg1, arg2) {
|
|
4823
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4803
4824
|
return ret;
|
|
4804
4825
|
};
|
|
4805
|
-
imports.wbg.
|
|
4806
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4826
|
+
imports.wbg.__wbindgen_closure_wrapper79219 = function(arg0, arg1, arg2) {
|
|
4827
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_93);
|
|
4807
4828
|
return ret;
|
|
4808
4829
|
};
|
|
4809
|
-
imports.wbg.
|
|
4810
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4830
|
+
imports.wbg.__wbindgen_closure_wrapper79221 = function(arg0, arg1, arg2) {
|
|
4831
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4811
4832
|
return ret;
|
|
4812
4833
|
};
|
|
4813
|
-
imports.wbg.
|
|
4814
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4834
|
+
imports.wbg.__wbindgen_closure_wrapper79223 = function(arg0, arg1, arg2) {
|
|
4835
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4815
4836
|
return ret;
|
|
4816
4837
|
};
|
|
4817
|
-
imports.wbg.
|
|
4818
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4838
|
+
imports.wbg.__wbindgen_closure_wrapper79225 = function(arg0, arg1, arg2) {
|
|
4839
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4819
4840
|
return ret;
|
|
4820
4841
|
};
|
|
4821
|
-
imports.wbg.
|
|
4822
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4842
|
+
imports.wbg.__wbindgen_closure_wrapper79227 = function(arg0, arg1, arg2) {
|
|
4843
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4823
4844
|
return ret;
|
|
4824
4845
|
};
|
|
4825
|
-
imports.wbg.
|
|
4826
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4846
|
+
imports.wbg.__wbindgen_closure_wrapper79229 = function(arg0, arg1, arg2) {
|
|
4847
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4827
4848
|
return ret;
|
|
4828
4849
|
};
|
|
4829
|
-
imports.wbg.
|
|
4830
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4850
|
+
imports.wbg.__wbindgen_closure_wrapper79231 = function(arg0, arg1, arg2) {
|
|
4851
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_90);
|
|
4831
4852
|
return ret;
|
|
4832
4853
|
};
|
|
4833
|
-
imports.wbg.
|
|
4834
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4854
|
+
imports.wbg.__wbindgen_closure_wrapper79233 = function(arg0, arg1, arg2) {
|
|
4855
|
+
const ret = makeMutClosure(arg0, arg1, 58963, __wbg_adapter_108);
|
|
4835
4856
|
return ret;
|
|
4836
4857
|
};
|
|
4837
4858
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -73,6 +73,7 @@ export const op_get_player_data: (a: number, b: number, c: number) => any;
|
|
|
73
73
|
export const op_get_players_in_scene: (a: number) => any;
|
|
74
74
|
export const op_get_previous_login: (a: number) => any;
|
|
75
75
|
export const op_get_profile_extras: (a: number) => any;
|
|
76
|
+
export const op_get_scene_loading_ui_stream: (a: number) => any;
|
|
76
77
|
export const op_get_system_action_stream: (a: number) => any;
|
|
77
78
|
export const op_get_texture_size: (a: number, b: number, c: number) => any;
|
|
78
79
|
export const op_get_user_data: (a: number) => any;
|
|
@@ -99,6 +100,7 @@ export const op_read_chat_stream: (a: number, b: number) => any;
|
|
|
99
100
|
export const op_read_file: (a: number, b: number, c: number) => any;
|
|
100
101
|
export const op_read_permission_request_stream: (a: number, b: number) => any;
|
|
101
102
|
export const op_read_permission_used_stream: (a: number, b: number) => any;
|
|
103
|
+
export const op_read_scene_loading_ui_stream: (a: number, b: number) => any;
|
|
102
104
|
export const op_read_system_action_stream: (a: number, b: number) => any;
|
|
103
105
|
export const op_read_voice_stream: (a: number, b: number) => any;
|
|
104
106
|
export const op_realm_information: (a: number) => any;
|
|
@@ -144,19 +146,19 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
|
144
146
|
export const __wbindgen_export_7: WebAssembly.Table;
|
|
145
147
|
export const __externref_table_dealloc: (a: number) => void;
|
|
146
148
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
149
|
-
export const
|
|
149
|
+
export const closure15507_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
150
|
+
export const closure41103_externref_shim: (a: number, b: number, c: any) => void;
|
|
151
|
+
export const closure50238_externref_shim: (a: number, b: number, c: any) => void;
|
|
150
152
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
151
153
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
152
|
-
export const
|
|
154
|
+
export const closure53892_externref_shim: (a: number, b: number, c: any) => void;
|
|
153
155
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
154
156
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
155
|
-
export const
|
|
156
|
-
export const
|
|
157
|
+
export const closure58962_externref_shim: (a: number, b: number, c: any) => void;
|
|
158
|
+
export const closure58966_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
157
159
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
158
|
-
export const
|
|
159
|
-
export const
|
|
160
|
-
export const
|
|
160
|
+
export const closure118917_externref_shim: (a: number, b: number, c: any) => void;
|
|
161
|
+
export const closure134180_externref_shim: (a: number, b: number, c: any) => void;
|
|
162
|
+
export const closure137073_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
161
163
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
162
164
|
export const __wbindgen_start: (a: number) => void;
|