@dcl-regenesislabs/bevy-explorer-web 0.1.0-22898575835.commit-fffc516 → 0.1.0-22898606668.commit-6280548
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/engine.js +2 -1
- package/index.html +1 -1
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/webgpu_build.d.ts +16 -9
- package/pkg/webgpu_build.js +69 -55
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +10 -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-22898606668.commit-6280548"
|
package/engine.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Engine logic - ES module
|
|
2
2
|
// Handles WASM/WebGPU initialization and game execution
|
|
3
3
|
|
|
4
|
-
import init, { engine_init, engine_run, gpu_cache_hash } from "./pkg/webgpu_build.js";
|
|
4
|
+
import init, { engine_init, engine_run, engine_console_command, gpu_cache_hash } from "./pkg/webgpu_build.js";
|
|
5
5
|
import { initGpuCache } from "./gpu_cache.js";
|
|
6
6
|
|
|
7
7
|
// Re-export for main.js
|
|
@@ -261,5 +261,6 @@ export function start() {
|
|
|
261
261
|
})();
|
|
262
262
|
|
|
263
263
|
engine_run(platform, realmValue, positionValue, systemScene, true, preview, 1e7);
|
|
264
|
+
window.engine_console_command = engine_console_command;
|
|
264
265
|
setTimeout(showCanvas,200)
|
|
265
266
|
}
|
package/index.html
CHANGED
|
@@ -411,7 +411,7 @@
|
|
|
411
411
|
}
|
|
412
412
|
</style>
|
|
413
413
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
414
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
414
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-22898606668.commit-6280548";</script>
|
|
415
415
|
</head>
|
|
416
416
|
<body>
|
|
417
417
|
<div id="header" class="container">
|
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-22898606668.commit-6280548",
|
|
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-22898606668.commit-6280548",
|
|
12
|
+
"commit": "62805480a0b7bd3bd2d2b2397fc9c0576473650b"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":115654655}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -6,6 +6,12 @@
|
|
|
6
6
|
export function init_asset_load_thread(): void;
|
|
7
7
|
export function engine_init(): Promise<any>;
|
|
8
8
|
export function engine_run(platform: string, realm: string, location: string, system_scene: string, with_thread_loader: boolean, preview: boolean, rabpf: number): void;
|
|
9
|
+
/**
|
|
10
|
+
* Send a console command to the engine from JavaScript.
|
|
11
|
+
* `command_line` is the full command string, e.g. `"/teleport 10 20"`.
|
|
12
|
+
* Returns a Promise that resolves with the command output or rejects with an error message.
|
|
13
|
+
*/
|
|
14
|
+
export function engine_console_command(command_line: string): Promise<any>;
|
|
9
15
|
export function image_processor_init(): void;
|
|
10
16
|
export function image_processor_run(): Promise<void>;
|
|
11
17
|
export function wasm_init_scene(): Promise<WorkerContext>;
|
|
@@ -151,6 +157,7 @@ export class WorkerContext {
|
|
|
151
157
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
152
158
|
|
|
153
159
|
export interface InitOutput {
|
|
160
|
+
readonly engine_console_command: (a: number, b: number) => any;
|
|
154
161
|
readonly engine_init: () => any;
|
|
155
162
|
readonly engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
156
163
|
readonly init_asset_load_thread: () => void;
|
|
@@ -283,20 +290,20 @@ export interface InitOutput {
|
|
|
283
290
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
284
291
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
285
292
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
286
|
-
readonly
|
|
287
|
-
readonly
|
|
288
|
-
readonly
|
|
293
|
+
readonly closure15285_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
294
|
+
readonly closure42097_externref_shim: (a: number, b: number, c: any) => void;
|
|
295
|
+
readonly closure51604_externref_shim: (a: number, b: number, c: any) => void;
|
|
289
296
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
290
297
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
291
|
-
readonly
|
|
298
|
+
readonly closure55258_externref_shim: (a: number, b: number, c: any) => void;
|
|
292
299
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
293
300
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
294
|
-
readonly
|
|
295
|
-
readonly
|
|
301
|
+
readonly closure60338_externref_shim: (a: number, b: number, c: any) => void;
|
|
302
|
+
readonly closure60342_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
296
303
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
297
|
-
readonly
|
|
298
|
-
readonly
|
|
299
|
-
readonly
|
|
304
|
+
readonly closure120303_externref_shim: (a: number, b: number, c: any) => void;
|
|
305
|
+
readonly closure135559_externref_shim: (a: number, b: number, c: any) => void;
|
|
306
|
+
readonly closure138452_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
300
307
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
301
308
|
readonly __wbindgen_start: (a: number) => void;
|
|
302
309
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -274,6 +274,20 @@ export function engine_run(platform, realm, location, system_scene, with_thread_
|
|
|
274
274
|
wasm.engine_run(ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, with_thread_loader, preview, rabpf);
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
/**
|
|
278
|
+
* Send a console command to the engine from JavaScript.
|
|
279
|
+
* `command_line` is the full command string, e.g. `"/teleport 10 20"`.
|
|
280
|
+
* Returns a Promise that resolves with the command output or rejects with an error message.
|
|
281
|
+
* @param {string} command_line
|
|
282
|
+
* @returns {Promise<any>}
|
|
283
|
+
*/
|
|
284
|
+
export function engine_console_command(command_line) {
|
|
285
|
+
const ptr0 = passStringToWasm0(command_line, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
286
|
+
const len0 = WASM_VECTOR_LEN;
|
|
287
|
+
const ret = wasm.engine_console_command(ptr0, len0);
|
|
288
|
+
return ret;
|
|
289
|
+
}
|
|
290
|
+
|
|
277
291
|
export function image_processor_init() {
|
|
278
292
|
wasm.image_processor_init();
|
|
279
293
|
}
|
|
@@ -1445,15 +1459,15 @@ export function gpu_cache_hash() {
|
|
|
1445
1459
|
}
|
|
1446
1460
|
|
|
1447
1461
|
function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
|
|
1448
|
-
wasm.
|
|
1462
|
+
wasm.closure15285_externref_shim(arg0, arg1, arg2, arg3);
|
|
1449
1463
|
}
|
|
1450
1464
|
|
|
1451
1465
|
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
1452
|
-
wasm.
|
|
1466
|
+
wasm.closure42097_externref_shim(arg0, arg1, arg2);
|
|
1453
1467
|
}
|
|
1454
1468
|
|
|
1455
1469
|
function __wbg_adapter_68(arg0, arg1, arg2) {
|
|
1456
|
-
wasm.
|
|
1470
|
+
wasm.closure51604_externref_shim(arg0, arg1, arg2);
|
|
1457
1471
|
}
|
|
1458
1472
|
|
|
1459
1473
|
function __wbg_adapter_71(arg0, arg1) {
|
|
@@ -1465,7 +1479,7 @@ function __wbg_adapter_74(arg0, arg1) {
|
|
|
1465
1479
|
}
|
|
1466
1480
|
|
|
1467
1481
|
function __wbg_adapter_77(arg0, arg1, arg2) {
|
|
1468
|
-
wasm.
|
|
1482
|
+
wasm.closure55258_externref_shim(arg0, arg1, arg2);
|
|
1469
1483
|
}
|
|
1470
1484
|
|
|
1471
1485
|
function __wbg_adapter_84(arg0, arg1) {
|
|
@@ -1477,11 +1491,11 @@ function __wbg_adapter_87(arg0, arg1) {
|
|
|
1477
1491
|
}
|
|
1478
1492
|
|
|
1479
1493
|
function __wbg_adapter_90(arg0, arg1, arg2) {
|
|
1480
|
-
wasm.
|
|
1494
|
+
wasm.closure60338_externref_shim(arg0, arg1, arg2);
|
|
1481
1495
|
}
|
|
1482
1496
|
|
|
1483
1497
|
function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
|
|
1484
|
-
wasm.
|
|
1498
|
+
wasm.closure60342_externref_shim(arg0, arg1, arg2, arg3);
|
|
1485
1499
|
}
|
|
1486
1500
|
|
|
1487
1501
|
function __wbg_adapter_108(arg0, arg1) {
|
|
@@ -1489,15 +1503,15 @@ function __wbg_adapter_108(arg0, arg1) {
|
|
|
1489
1503
|
}
|
|
1490
1504
|
|
|
1491
1505
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1492
|
-
wasm.
|
|
1506
|
+
wasm.closure120303_externref_shim(arg0, arg1, arg2);
|
|
1493
1507
|
}
|
|
1494
1508
|
|
|
1495
1509
|
function __wbg_adapter_114(arg0, arg1, arg2) {
|
|
1496
|
-
wasm.
|
|
1510
|
+
wasm.closure135559_externref_shim(arg0, arg1, arg2);
|
|
1497
1511
|
}
|
|
1498
1512
|
|
|
1499
|
-
function
|
|
1500
|
-
wasm.
|
|
1513
|
+
function __wbg_adapter_1590(arg0, arg1, arg2, arg3) {
|
|
1514
|
+
wasm.closure138452_externref_shim(arg0, arg1, arg2, arg3);
|
|
1501
1515
|
}
|
|
1502
1516
|
|
|
1503
1517
|
/**
|
|
@@ -3046,7 +3060,7 @@ function __wbg_get_imports() {
|
|
|
3046
3060
|
const a = state0.a;
|
|
3047
3061
|
state0.a = 0;
|
|
3048
3062
|
try {
|
|
3049
|
-
return
|
|
3063
|
+
return __wbg_adapter_1590(a, state0.b, arg0, arg1);
|
|
3050
3064
|
} finally {
|
|
3051
3065
|
state0.a = a;
|
|
3052
3066
|
}
|
|
@@ -4647,92 +4661,92 @@ function __wbg_get_imports() {
|
|
|
4647
4661
|
const ret = false;
|
|
4648
4662
|
return ret;
|
|
4649
4663
|
};
|
|
4650
|
-
imports.wbg.
|
|
4651
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4664
|
+
imports.wbg.__wbindgen_closure_wrapper151983 = function(arg0, arg1, arg2) {
|
|
4665
|
+
const ret = makeMutClosure(arg0, arg1, 120304, __wbg_adapter_111);
|
|
4652
4666
|
return ret;
|
|
4653
4667
|
};
|
|
4654
|
-
imports.wbg.
|
|
4655
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4668
|
+
imports.wbg.__wbindgen_closure_wrapper172638 = function(arg0, arg1, arg2) {
|
|
4669
|
+
const ret = makeMutClosure(arg0, arg1, 135560, __wbg_adapter_114);
|
|
4656
4670
|
return ret;
|
|
4657
4671
|
};
|
|
4658
|
-
imports.wbg.
|
|
4659
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4672
|
+
imports.wbg.__wbindgen_closure_wrapper172640 = function(arg0, arg1, arg2) {
|
|
4673
|
+
const ret = makeMutClosure(arg0, arg1, 135560, __wbg_adapter_114);
|
|
4660
4674
|
return ret;
|
|
4661
4675
|
};
|
|
4662
|
-
imports.wbg.
|
|
4663
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4676
|
+
imports.wbg.__wbindgen_closure_wrapper19574 = function(arg0, arg1, arg2) {
|
|
4677
|
+
const ret = makeMutClosure(arg0, arg1, 15286, __wbg_adapter_62);
|
|
4664
4678
|
return ret;
|
|
4665
4679
|
};
|
|
4666
|
-
imports.wbg.
|
|
4667
|
-
const ret = makeClosure(arg0, arg1,
|
|
4680
|
+
imports.wbg.__wbindgen_closure_wrapper54976 = function(arg0, arg1, arg2) {
|
|
4681
|
+
const ret = makeClosure(arg0, arg1, 42098, __wbg_adapter_65);
|
|
4668
4682
|
return ret;
|
|
4669
4683
|
};
|
|
4670
|
-
imports.wbg.
|
|
4671
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4684
|
+
imports.wbg.__wbindgen_closure_wrapper67861 = function(arg0, arg1, arg2) {
|
|
4685
|
+
const ret = makeMutClosure(arg0, arg1, 51605, __wbg_adapter_68);
|
|
4672
4686
|
return ret;
|
|
4673
4687
|
};
|
|
4674
|
-
imports.wbg.
|
|
4675
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4688
|
+
imports.wbg.__wbindgen_closure_wrapper68000 = function(arg0, arg1, arg2) {
|
|
4689
|
+
const ret = makeMutClosure(arg0, arg1, 51708, __wbg_adapter_71);
|
|
4676
4690
|
return ret;
|
|
4677
4691
|
};
|
|
4678
|
-
imports.wbg.
|
|
4679
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4692
|
+
imports.wbg.__wbindgen_closure_wrapper71820 = function(arg0, arg1, arg2) {
|
|
4693
|
+
const ret = makeMutClosure(arg0, arg1, 54645, __wbg_adapter_74);
|
|
4680
4694
|
return ret;
|
|
4681
4695
|
};
|
|
4682
|
-
imports.wbg.
|
|
4683
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4696
|
+
imports.wbg.__wbindgen_closure_wrapper73018 = function(arg0, arg1, arg2) {
|
|
4697
|
+
const ret = makeMutClosure(arg0, arg1, 55259, __wbg_adapter_77);
|
|
4684
4698
|
return ret;
|
|
4685
4699
|
};
|
|
4686
|
-
imports.wbg.
|
|
4687
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4700
|
+
imports.wbg.__wbindgen_closure_wrapper73020 = function(arg0, arg1, arg2) {
|
|
4701
|
+
const ret = makeMutClosure(arg0, arg1, 55259, __wbg_adapter_77);
|
|
4688
4702
|
return ret;
|
|
4689
4703
|
};
|
|
4690
|
-
imports.wbg.
|
|
4691
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4704
|
+
imports.wbg.__wbindgen_closure_wrapper73022 = function(arg0, arg1, arg2) {
|
|
4705
|
+
const ret = makeMutClosure(arg0, arg1, 55259, __wbg_adapter_77);
|
|
4692
4706
|
return ret;
|
|
4693
4707
|
};
|
|
4694
|
-
imports.wbg.
|
|
4695
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4708
|
+
imports.wbg.__wbindgen_closure_wrapper77593 = function(arg0, arg1, arg2) {
|
|
4709
|
+
const ret = makeMutClosure(arg0, arg1, 58493, __wbg_adapter_84);
|
|
4696
4710
|
return ret;
|
|
4697
4711
|
};
|
|
4698
|
-
imports.wbg.
|
|
4699
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4712
|
+
imports.wbg.__wbindgen_closure_wrapper78630 = function(arg0, arg1, arg2) {
|
|
4713
|
+
const ret = makeMutClosure(arg0, arg1, 58874, __wbg_adapter_87);
|
|
4700
4714
|
return ret;
|
|
4701
4715
|
};
|
|
4702
|
-
imports.wbg.
|
|
4703
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4716
|
+
imports.wbg.__wbindgen_closure_wrapper80789 = function(arg0, arg1, arg2) {
|
|
4717
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4704
4718
|
return ret;
|
|
4705
4719
|
};
|
|
4706
|
-
imports.wbg.
|
|
4707
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4720
|
+
imports.wbg.__wbindgen_closure_wrapper80791 = function(arg0, arg1, arg2) {
|
|
4721
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_93);
|
|
4708
4722
|
return ret;
|
|
4709
4723
|
};
|
|
4710
|
-
imports.wbg.
|
|
4711
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4724
|
+
imports.wbg.__wbindgen_closure_wrapper80793 = function(arg0, arg1, arg2) {
|
|
4725
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4712
4726
|
return ret;
|
|
4713
4727
|
};
|
|
4714
|
-
imports.wbg.
|
|
4715
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4728
|
+
imports.wbg.__wbindgen_closure_wrapper80795 = function(arg0, arg1, arg2) {
|
|
4729
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4716
4730
|
return ret;
|
|
4717
4731
|
};
|
|
4718
|
-
imports.wbg.
|
|
4719
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4732
|
+
imports.wbg.__wbindgen_closure_wrapper80797 = function(arg0, arg1, arg2) {
|
|
4733
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4720
4734
|
return ret;
|
|
4721
4735
|
};
|
|
4722
|
-
imports.wbg.
|
|
4723
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4736
|
+
imports.wbg.__wbindgen_closure_wrapper80799 = function(arg0, arg1, arg2) {
|
|
4737
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4724
4738
|
return ret;
|
|
4725
4739
|
};
|
|
4726
|
-
imports.wbg.
|
|
4727
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4740
|
+
imports.wbg.__wbindgen_closure_wrapper80801 = function(arg0, arg1, arg2) {
|
|
4741
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4728
4742
|
return ret;
|
|
4729
4743
|
};
|
|
4730
|
-
imports.wbg.
|
|
4731
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4744
|
+
imports.wbg.__wbindgen_closure_wrapper80803 = function(arg0, arg1, arg2) {
|
|
4745
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_90);
|
|
4732
4746
|
return ret;
|
|
4733
4747
|
};
|
|
4734
|
-
imports.wbg.
|
|
4735
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4748
|
+
imports.wbg.__wbindgen_closure_wrapper80805 = function(arg0, arg1, arg2) {
|
|
4749
|
+
const ret = makeMutClosure(arg0, arg1, 60339, __wbg_adapter_108);
|
|
4736
4750
|
return ret;
|
|
4737
4751
|
};
|
|
4738
4752
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export const engine_console_command: (a: number, b: number) => any;
|
|
3
4
|
export const engine_init: () => any;
|
|
4
5
|
export const engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
5
6
|
export const init_asset_load_thread: () => void;
|
|
@@ -132,19 +133,19 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
|
132
133
|
export const __wbindgen_export_7: WebAssembly.Table;
|
|
133
134
|
export const __externref_table_dealloc: (a: number) => void;
|
|
134
135
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
135
|
-
export const
|
|
136
|
-
export const
|
|
137
|
-
export const
|
|
136
|
+
export const closure15285_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
137
|
+
export const closure42097_externref_shim: (a: number, b: number, c: any) => void;
|
|
138
|
+
export const closure51604_externref_shim: (a: number, b: number, c: any) => void;
|
|
138
139
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
139
140
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
140
|
-
export const
|
|
141
|
+
export const closure55258_externref_shim: (a: number, b: number, c: any) => void;
|
|
141
142
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
142
143
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
143
|
-
export const
|
|
144
|
-
export const
|
|
144
|
+
export const closure60338_externref_shim: (a: number, b: number, c: any) => void;
|
|
145
|
+
export const closure60342_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
145
146
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
147
|
+
export const closure120303_externref_shim: (a: number, b: number, c: any) => void;
|
|
148
|
+
export const closure135559_externref_shim: (a: number, b: number, c: any) => void;
|
|
149
|
+
export const closure138452_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
149
150
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
150
151
|
export const __wbindgen_start: (a: number) => void;
|