@dcl-regenesislabs/bevy-explorer-web 0.1.0-21606986484.commit-0e77ba9 → 0.1.0-21623516972.commit-2d1878e
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 +75 -54
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +10 -8
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-21623516972.commit-2d1878e"
|
package/index.html
CHANGED
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
}
|
|
131
131
|
</style>
|
|
132
132
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
133
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
133
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21623516972.commit-2d1878e";</script>
|
|
134
134
|
</head>
|
|
135
135
|
|
|
136
136
|
<body>
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
</div>
|
|
170
170
|
<script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
|
|
171
171
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
172
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
172
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21623516972.commit-2d1878e/main.js"></script>
|
|
173
173
|
</body>
|
|
174
174
|
|
|
175
175
|
</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-21623516972.commit-2d1878e",
|
|
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-21623516972.commit-2d1878e",
|
|
12
|
+
"commit": "2d1878e57e629803112ea86c5fa3a4d44d2a5656"
|
|
13
13
|
}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -34,7 +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
|
|
37
|
+
export function op_get_hover_stream(state: WorkerContext): Promise<number>;
|
|
38
38
|
export function op_read_chat_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
39
39
|
export function op_send_chat(state: WorkerContext, message: string, channel: string): void;
|
|
40
40
|
export function op_get_profile_extras(state: WorkerContext): Promise<any>;
|
|
@@ -44,6 +44,8 @@ export function op_read_permission_request_stream(state: WorkerContext, rid: num
|
|
|
44
44
|
export function op_get_permission_used_stream(state: WorkerContext): Promise<number>;
|
|
45
45
|
export function op_read_permission_used_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
46
46
|
export function op_set_single_permission(state: WorkerContext, id: number, allow: boolean): void;
|
|
47
|
+
export function op_read_hover_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
48
|
+
export function op_get_scene_loading_ui_stream(state: WorkerContext): Promise<number>;
|
|
47
49
|
export function op_read_scene_loading_ui_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
48
50
|
export function op_motd(state: WorkerContext): Promise<string>;
|
|
49
51
|
export function op_get_current_login(state: WorkerContext): string | undefined;
|
|
@@ -227,6 +229,7 @@ export interface InitOutput {
|
|
|
227
229
|
readonly op_get_connected_players: (a: number) => any;
|
|
228
230
|
readonly op_get_current_login: (a: number) => [number, number];
|
|
229
231
|
readonly op_get_home_scene: (a: number) => any;
|
|
232
|
+
readonly op_get_hover_stream: (a: number) => any;
|
|
230
233
|
readonly op_get_mic_state: (a: number) => any;
|
|
231
234
|
readonly op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
232
235
|
readonly op_get_permission_request_stream: (a: number) => any;
|
|
@@ -261,6 +264,7 @@ export interface InitOutput {
|
|
|
261
264
|
readonly op_quit: (a: number) => void;
|
|
262
265
|
readonly op_read_chat_stream: (a: number, b: number) => any;
|
|
263
266
|
readonly op_read_file: (a: number, b: number, c: number) => any;
|
|
267
|
+
readonly op_read_hover_stream: (a: number, b: number) => any;
|
|
264
268
|
readonly op_read_permission_request_stream: (a: number, b: number) => any;
|
|
265
269
|
readonly op_read_permission_used_stream: (a: number, b: number) => any;
|
|
266
270
|
readonly op_read_scene_loading_ui_stream: (a: number, b: number) => any;
|
|
@@ -310,19 +314,19 @@ export interface InitOutput {
|
|
|
310
314
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
311
315
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
312
316
|
readonly closure15510_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
313
|
-
readonly
|
|
314
|
-
readonly
|
|
317
|
+
readonly closure41180_externref_shim: (a: number, b: number, c: any) => void;
|
|
318
|
+
readonly closure50490_externref_shim: (a: number, b: number, c: any) => void;
|
|
315
319
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
316
320
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
317
|
-
readonly
|
|
321
|
+
readonly closure54144_externref_shim: (a: number, b: number, c: any) => void;
|
|
318
322
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
319
323
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
320
|
-
readonly
|
|
321
|
-
readonly
|
|
324
|
+
readonly closure59214_externref_shim: (a: number, b: number, c: any) => void;
|
|
325
|
+
readonly closure59218_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
322
326
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
323
|
-
readonly
|
|
324
|
-
readonly
|
|
325
|
-
readonly
|
|
327
|
+
readonly closure119169_externref_shim: (a: number, b: number, c: any) => void;
|
|
328
|
+
readonly closure134432_externref_shim: (a: number, b: number, c: any) => void;
|
|
329
|
+
readonly closure137325_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
326
330
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
327
331
|
readonly __wbindgen_start: (a: number) => void;
|
|
328
332
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -626,9 +626,9 @@ export function op_read_voice_stream(state, rid) {
|
|
|
626
626
|
* @param {WorkerContext} state
|
|
627
627
|
* @returns {Promise<number>}
|
|
628
628
|
*/
|
|
629
|
-
export function
|
|
629
|
+
export function op_get_hover_stream(state) {
|
|
630
630
|
_assertClass(state, WorkerContext);
|
|
631
|
-
const ret = wasm.
|
|
631
|
+
const ret = wasm.op_get_hover_stream(state.__wbg_ptr);
|
|
632
632
|
return ret;
|
|
633
633
|
}
|
|
634
634
|
|
|
@@ -727,6 +727,27 @@ export function op_set_single_permission(state, id, allow) {
|
|
|
727
727
|
wasm.op_set_single_permission(state.__wbg_ptr, id, allow);
|
|
728
728
|
}
|
|
729
729
|
|
|
730
|
+
/**
|
|
731
|
+
* @param {WorkerContext} state
|
|
732
|
+
* @param {number} rid
|
|
733
|
+
* @returns {Promise<any>}
|
|
734
|
+
*/
|
|
735
|
+
export function op_read_hover_stream(state, rid) {
|
|
736
|
+
_assertClass(state, WorkerContext);
|
|
737
|
+
const ret = wasm.op_read_hover_stream(state.__wbg_ptr, rid);
|
|
738
|
+
return ret;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* @param {WorkerContext} state
|
|
743
|
+
* @returns {Promise<number>}
|
|
744
|
+
*/
|
|
745
|
+
export function op_get_scene_loading_ui_stream(state) {
|
|
746
|
+
_assertClass(state, WorkerContext);
|
|
747
|
+
const ret = wasm.op_get_scene_loading_ui_stream(state.__wbg_ptr);
|
|
748
|
+
return ret;
|
|
749
|
+
}
|
|
750
|
+
|
|
730
751
|
/**
|
|
731
752
|
* @param {WorkerContext} state
|
|
732
753
|
* @param {number} rid
|
|
@@ -1414,11 +1435,11 @@ function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
|
|
|
1414
1435
|
}
|
|
1415
1436
|
|
|
1416
1437
|
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
1417
|
-
wasm.
|
|
1438
|
+
wasm.closure41180_externref_shim(arg0, arg1, arg2);
|
|
1418
1439
|
}
|
|
1419
1440
|
|
|
1420
1441
|
function __wbg_adapter_68(arg0, arg1, arg2) {
|
|
1421
|
-
wasm.
|
|
1442
|
+
wasm.closure50490_externref_shim(arg0, arg1, arg2);
|
|
1422
1443
|
}
|
|
1423
1444
|
|
|
1424
1445
|
function __wbg_adapter_71(arg0, arg1) {
|
|
@@ -1430,7 +1451,7 @@ function __wbg_adapter_74(arg0, arg1) {
|
|
|
1430
1451
|
}
|
|
1431
1452
|
|
|
1432
1453
|
function __wbg_adapter_77(arg0, arg1, arg2) {
|
|
1433
|
-
wasm.
|
|
1454
|
+
wasm.closure54144_externref_shim(arg0, arg1, arg2);
|
|
1434
1455
|
}
|
|
1435
1456
|
|
|
1436
1457
|
function __wbg_adapter_84(arg0, arg1) {
|
|
@@ -1442,11 +1463,11 @@ function __wbg_adapter_87(arg0, arg1) {
|
|
|
1442
1463
|
}
|
|
1443
1464
|
|
|
1444
1465
|
function __wbg_adapter_90(arg0, arg1, arg2) {
|
|
1445
|
-
wasm.
|
|
1466
|
+
wasm.closure59214_externref_shim(arg0, arg1, arg2);
|
|
1446
1467
|
}
|
|
1447
1468
|
|
|
1448
1469
|
function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
|
|
1449
|
-
wasm.
|
|
1470
|
+
wasm.closure59218_externref_shim(arg0, arg1, arg2, arg3);
|
|
1450
1471
|
}
|
|
1451
1472
|
|
|
1452
1473
|
function __wbg_adapter_108(arg0, arg1) {
|
|
@@ -1454,15 +1475,15 @@ function __wbg_adapter_108(arg0, arg1) {
|
|
|
1454
1475
|
}
|
|
1455
1476
|
|
|
1456
1477
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1457
|
-
wasm.
|
|
1478
|
+
wasm.closure119169_externref_shim(arg0, arg1, arg2);
|
|
1458
1479
|
}
|
|
1459
1480
|
|
|
1460
1481
|
function __wbg_adapter_114(arg0, arg1, arg2) {
|
|
1461
|
-
wasm.
|
|
1482
|
+
wasm.closure134432_externref_shim(arg0, arg1, arg2);
|
|
1462
1483
|
}
|
|
1463
1484
|
|
|
1464
|
-
function
|
|
1465
|
-
wasm.
|
|
1485
|
+
function __wbg_adapter_1595(arg0, arg1, arg2, arg3) {
|
|
1486
|
+
wasm.closure137325_externref_shim(arg0, arg1, arg2, arg3);
|
|
1466
1487
|
}
|
|
1467
1488
|
|
|
1468
1489
|
/**
|
|
@@ -3166,7 +3187,7 @@ function __wbg_get_imports() {
|
|
|
3166
3187
|
const a = state0.a;
|
|
3167
3188
|
state0.a = 0;
|
|
3168
3189
|
try {
|
|
3169
|
-
return
|
|
3190
|
+
return __wbg_adapter_1595(a, state0.b, arg0, arg1);
|
|
3170
3191
|
} finally {
|
|
3171
3192
|
state0.a = a;
|
|
3172
3193
|
}
|
|
@@ -4767,92 +4788,92 @@ function __wbg_get_imports() {
|
|
|
4767
4788
|
const ret = false;
|
|
4768
4789
|
return ret;
|
|
4769
4790
|
};
|
|
4770
|
-
imports.wbg.
|
|
4771
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4791
|
+
imports.wbg.__wbindgen_closure_wrapper150706 = function(arg0, arg1, arg2) {
|
|
4792
|
+
const ret = makeMutClosure(arg0, arg1, 119170, __wbg_adapter_111);
|
|
4772
4793
|
return ret;
|
|
4773
4794
|
};
|
|
4774
|
-
imports.wbg.
|
|
4775
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4795
|
+
imports.wbg.__wbindgen_closure_wrapper171514 = function(arg0, arg1, arg2) {
|
|
4796
|
+
const ret = makeMutClosure(arg0, arg1, 134433, __wbg_adapter_114);
|
|
4776
4797
|
return ret;
|
|
4777
4798
|
};
|
|
4778
|
-
imports.wbg.
|
|
4779
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4799
|
+
imports.wbg.__wbindgen_closure_wrapper171516 = function(arg0, arg1, arg2) {
|
|
4800
|
+
const ret = makeMutClosure(arg0, arg1, 134433, __wbg_adapter_114);
|
|
4780
4801
|
return ret;
|
|
4781
4802
|
};
|
|
4782
4803
|
imports.wbg.__wbindgen_closure_wrapper19909 = function(arg0, arg1, arg2) {
|
|
4783
4804
|
const ret = makeMutClosure(arg0, arg1, 15511, __wbg_adapter_62);
|
|
4784
4805
|
return ret;
|
|
4785
4806
|
};
|
|
4786
|
-
imports.wbg.
|
|
4787
|
-
const ret = makeClosure(arg0, arg1,
|
|
4807
|
+
imports.wbg.__wbindgen_closure_wrapper53944 = function(arg0, arg1, arg2) {
|
|
4808
|
+
const ret = makeClosure(arg0, arg1, 41181, __wbg_adapter_65);
|
|
4788
4809
|
return ret;
|
|
4789
4810
|
};
|
|
4790
|
-
imports.wbg.
|
|
4791
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4811
|
+
imports.wbg.__wbindgen_closure_wrapper66626 = function(arg0, arg1, arg2) {
|
|
4812
|
+
const ret = makeMutClosure(arg0, arg1, 50491, __wbg_adapter_68);
|
|
4792
4813
|
return ret;
|
|
4793
4814
|
};
|
|
4794
|
-
imports.wbg.
|
|
4795
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4815
|
+
imports.wbg.__wbindgen_closure_wrapper66765 = function(arg0, arg1, arg2) {
|
|
4816
|
+
const ret = makeMutClosure(arg0, arg1, 50594, __wbg_adapter_71);
|
|
4796
4817
|
return ret;
|
|
4797
4818
|
};
|
|
4798
|
-
imports.wbg.
|
|
4799
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4819
|
+
imports.wbg.__wbindgen_closure_wrapper70589 = function(arg0, arg1, arg2) {
|
|
4820
|
+
const ret = makeMutClosure(arg0, arg1, 53531, __wbg_adapter_74);
|
|
4800
4821
|
return ret;
|
|
4801
4822
|
};
|
|
4802
|
-
imports.wbg.
|
|
4803
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4823
|
+
imports.wbg.__wbindgen_closure_wrapper71787 = function(arg0, arg1, arg2) {
|
|
4824
|
+
const ret = makeMutClosure(arg0, arg1, 54145, __wbg_adapter_77);
|
|
4804
4825
|
return ret;
|
|
4805
4826
|
};
|
|
4806
|
-
imports.wbg.
|
|
4807
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4827
|
+
imports.wbg.__wbindgen_closure_wrapper71789 = function(arg0, arg1, arg2) {
|
|
4828
|
+
const ret = makeMutClosure(arg0, arg1, 54145, __wbg_adapter_77);
|
|
4808
4829
|
return ret;
|
|
4809
4830
|
};
|
|
4810
|
-
imports.wbg.
|
|
4811
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4831
|
+
imports.wbg.__wbindgen_closure_wrapper71791 = function(arg0, arg1, arg2) {
|
|
4832
|
+
const ret = makeMutClosure(arg0, arg1, 54145, __wbg_adapter_77);
|
|
4812
4833
|
return ret;
|
|
4813
4834
|
};
|
|
4814
|
-
imports.wbg.
|
|
4815
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4835
|
+
imports.wbg.__wbindgen_closure_wrapper76354 = function(arg0, arg1, arg2) {
|
|
4836
|
+
const ret = makeMutClosure(arg0, arg1, 57377, __wbg_adapter_84);
|
|
4816
4837
|
return ret;
|
|
4817
4838
|
};
|
|
4818
|
-
imports.wbg.
|
|
4819
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4839
|
+
imports.wbg.__wbindgen_closure_wrapper77389 = function(arg0, arg1, arg2) {
|
|
4840
|
+
const ret = makeMutClosure(arg0, arg1, 57758, __wbg_adapter_87);
|
|
4820
4841
|
return ret;
|
|
4821
4842
|
};
|
|
4822
|
-
imports.wbg.
|
|
4823
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4843
|
+
imports.wbg.__wbindgen_closure_wrapper79534 = function(arg0, arg1, arg2) {
|
|
4844
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4824
4845
|
return ret;
|
|
4825
4846
|
};
|
|
4826
|
-
imports.wbg.
|
|
4827
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4847
|
+
imports.wbg.__wbindgen_closure_wrapper79536 = function(arg0, arg1, arg2) {
|
|
4848
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_93);
|
|
4828
4849
|
return ret;
|
|
4829
4850
|
};
|
|
4830
|
-
imports.wbg.
|
|
4831
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4851
|
+
imports.wbg.__wbindgen_closure_wrapper79538 = function(arg0, arg1, arg2) {
|
|
4852
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4832
4853
|
return ret;
|
|
4833
4854
|
};
|
|
4834
|
-
imports.wbg.
|
|
4835
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4855
|
+
imports.wbg.__wbindgen_closure_wrapper79540 = function(arg0, arg1, arg2) {
|
|
4856
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4836
4857
|
return ret;
|
|
4837
4858
|
};
|
|
4838
|
-
imports.wbg.
|
|
4839
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4859
|
+
imports.wbg.__wbindgen_closure_wrapper79542 = function(arg0, arg1, arg2) {
|
|
4860
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4840
4861
|
return ret;
|
|
4841
4862
|
};
|
|
4842
|
-
imports.wbg.
|
|
4843
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4863
|
+
imports.wbg.__wbindgen_closure_wrapper79544 = function(arg0, arg1, arg2) {
|
|
4864
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4844
4865
|
return ret;
|
|
4845
4866
|
};
|
|
4846
|
-
imports.wbg.
|
|
4847
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4867
|
+
imports.wbg.__wbindgen_closure_wrapper79546 = function(arg0, arg1, arg2) {
|
|
4868
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4848
4869
|
return ret;
|
|
4849
4870
|
};
|
|
4850
|
-
imports.wbg.
|
|
4851
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4871
|
+
imports.wbg.__wbindgen_closure_wrapper79548 = function(arg0, arg1, arg2) {
|
|
4872
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_90);
|
|
4852
4873
|
return ret;
|
|
4853
4874
|
};
|
|
4854
|
-
imports.wbg.
|
|
4855
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4875
|
+
imports.wbg.__wbindgen_closure_wrapper79550 = function(arg0, arg1, arg2) {
|
|
4876
|
+
const ret = makeMutClosure(arg0, arg1, 59215, __wbg_adapter_108);
|
|
4856
4877
|
return ret;
|
|
4857
4878
|
};
|
|
4858
4879
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -64,6 +64,7 @@ export const op_get_chat_stream: (a: number) => any;
|
|
|
64
64
|
export const op_get_connected_players: (a: number) => any;
|
|
65
65
|
export const op_get_current_login: (a: number) => [number, number];
|
|
66
66
|
export const op_get_home_scene: (a: number) => any;
|
|
67
|
+
export const op_get_hover_stream: (a: number) => any;
|
|
67
68
|
export const op_get_mic_state: (a: number) => any;
|
|
68
69
|
export const op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
69
70
|
export const op_get_permission_request_stream: (a: number) => any;
|
|
@@ -98,6 +99,7 @@ export const op_portable_spawn: (a: number, b: number, c: number, d: number, e:
|
|
|
98
99
|
export const op_quit: (a: number) => void;
|
|
99
100
|
export const op_read_chat_stream: (a: number, b: number) => any;
|
|
100
101
|
export const op_read_file: (a: number, b: number, c: number) => any;
|
|
102
|
+
export const op_read_hover_stream: (a: number, b: number) => any;
|
|
101
103
|
export const op_read_permission_request_stream: (a: number, b: number) => any;
|
|
102
104
|
export const op_read_permission_used_stream: (a: number, b: number) => any;
|
|
103
105
|
export const op_read_scene_loading_ui_stream: (a: number, b: number) => any;
|
|
@@ -147,18 +149,18 @@ export const __wbindgen_export_7: WebAssembly.Table;
|
|
|
147
149
|
export const __externref_table_dealloc: (a: number) => void;
|
|
148
150
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
149
151
|
export const closure15510_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
150
|
-
export const
|
|
151
|
-
export const
|
|
152
|
+
export const closure41180_externref_shim: (a: number, b: number, c: any) => void;
|
|
153
|
+
export const closure50490_externref_shim: (a: number, b: number, c: any) => void;
|
|
152
154
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
153
155
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
154
|
-
export const
|
|
156
|
+
export const closure54144_externref_shim: (a: number, b: number, c: any) => void;
|
|
155
157
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
156
158
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
157
|
-
export const
|
|
158
|
-
export const
|
|
159
|
+
export const closure59214_externref_shim: (a: number, b: number, c: any) => void;
|
|
160
|
+
export const closure59218_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
159
161
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
160
|
-
export const
|
|
161
|
-
export const
|
|
162
|
-
export const
|
|
162
|
+
export const closure119169_externref_shim: (a: number, b: number, c: any) => void;
|
|
163
|
+
export const closure134432_externref_shim: (a: number, b: number, c: any) => void;
|
|
164
|
+
export const closure137325_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
163
165
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
164
166
|
export const __wbindgen_start: (a: number) => void;
|