@dcl-regenesislabs/bevy-explorer-web 0.1.0-24236804614.commit-dc8eea2 → 0.1.0-24342436171.commit-66d54c5
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 +1 -1
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/webgpu_build.d.ts +3 -0
- package/pkg/webgpu_build.js +46 -28
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +1 -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-24342436171.commit-66d54c5"
|
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-24342436171.commit-66d54c5";</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-24342436171.commit-66d54c5",
|
|
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-24342436171.commit-66d54c5",
|
|
12
|
+
"commit": "66d54c57222352ce4b62b290804463efc2f6a1d6"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":118284262}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -158,6 +158,8 @@ export function op_get_permission_types(arg0: WorkerContext): Array<any>;
|
|
|
158
158
|
|
|
159
159
|
export function op_get_permission_used_stream(state: WorkerContext): Promise<number>;
|
|
160
160
|
|
|
161
|
+
export function op_get_platform(_op_state: WorkerContext): string;
|
|
162
|
+
|
|
161
163
|
export function op_get_player_data(state: WorkerContext, id: string): Promise<any>;
|
|
162
164
|
|
|
163
165
|
export function op_get_players_in_scene(state: WorkerContext): Promise<string[]>;
|
|
@@ -357,6 +359,7 @@ export interface InitOutput {
|
|
|
357
359
|
readonly op_get_permission_request_stream: (a: number) => any;
|
|
358
360
|
readonly op_get_permission_types: (a: number) => any;
|
|
359
361
|
readonly op_get_permission_used_stream: (a: number) => any;
|
|
362
|
+
readonly op_get_platform: (a: number) => [number, number];
|
|
360
363
|
readonly op_get_player_data: (a: number, b: number, c: number) => any;
|
|
361
364
|
readonly op_get_players_in_scene: (a: number) => any;
|
|
362
365
|
readonly op_get_previous_login: (a: number) => any;
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -673,6 +673,24 @@ export function op_get_permission_used_stream(state) {
|
|
|
673
673
|
return ret;
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
+
/**
|
|
677
|
+
* @param {WorkerContext} _op_state
|
|
678
|
+
* @returns {string}
|
|
679
|
+
*/
|
|
680
|
+
export function op_get_platform(_op_state) {
|
|
681
|
+
let deferred1_0;
|
|
682
|
+
let deferred1_1;
|
|
683
|
+
try {
|
|
684
|
+
_assertClass(_op_state, WorkerContext);
|
|
685
|
+
const ret = wasm.op_get_platform(_op_state.__wbg_ptr);
|
|
686
|
+
deferred1_0 = ret[0];
|
|
687
|
+
deferred1_1 = ret[1];
|
|
688
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
689
|
+
} finally {
|
|
690
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
|
|
676
694
|
/**
|
|
677
695
|
* @param {WorkerContext} state
|
|
678
696
|
* @param {string} id
|
|
@@ -4423,142 +4441,142 @@ function __wbg_get_imports(memory) {
|
|
|
4423
4441
|
return ret;
|
|
4424
4442
|
},
|
|
4425
4443
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
4426
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4444
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 124673, function: Function { arguments: [Externref], shim_idx: 124674, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4427
4445
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_);
|
|
4428
4446
|
return ret;
|
|
4429
4447
|
},
|
|
4430
4448
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
4431
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4449
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 124673, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 124674, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4432
4450
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1);
|
|
4433
4451
|
return ret;
|
|
4434
4452
|
},
|
|
4435
4453
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
4436
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4454
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 131944, function: Function { arguments: [Externref], shim_idx: 131945, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4437
4455
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_);
|
|
4438
4456
|
return ret;
|
|
4439
4457
|
},
|
|
4440
4458
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
4441
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4459
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 139998, function: Function { arguments: [Externref], shim_idx: 139999, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4442
4460
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
|
|
4443
4461
|
return ret;
|
|
4444
4462
|
},
|
|
4445
4463
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4446
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4464
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 139998, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 140001, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4447
4465
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_);
|
|
4448
4466
|
return ret;
|
|
4449
4467
|
},
|
|
4450
4468
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
4451
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4469
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 18002, function: Function { arguments: [F64, Externref], shim_idx: 18003, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4452
4470
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
|
|
4453
4471
|
return ret;
|
|
4454
4472
|
},
|
|
4455
4473
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
4456
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4474
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 45795, function: Function { arguments: [Externref], shim_idx: 45796, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4457
4475
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
|
|
4458
4476
|
return ret;
|
|
4459
4477
|
},
|
|
4460
4478
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
4461
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4479
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 45795, function: Function { arguments: [Externref], shim_idx: 45798, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
4462
4480
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_);
|
|
4463
4481
|
return ret;
|
|
4464
4482
|
},
|
|
4465
4483
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4466
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4484
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55475, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 55476, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4467
4485
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_);
|
|
4468
4486
|
return ret;
|
|
4469
4487
|
},
|
|
4470
4488
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
4471
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4489
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55580, function: Function { arguments: [], shim_idx: 55581, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4472
4490
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true_);
|
|
4473
4491
|
return ret;
|
|
4474
4492
|
},
|
|
4475
4493
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4476
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4494
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55583, function: Function { arguments: [Externref], shim_idx: 55584, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4477
4495
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
|
|
4478
4496
|
return ret;
|
|
4479
4497
|
},
|
|
4480
4498
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4481
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4499
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 58935, function: Function { arguments: [], shim_idx: 58936, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4482
4500
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__1_);
|
|
4483
4501
|
return ret;
|
|
4484
4502
|
},
|
|
4485
4503
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4486
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4504
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59543, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 59544, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4487
4505
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_);
|
|
4488
4506
|
return ret;
|
|
4489
4507
|
},
|
|
4490
4508
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4491
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4509
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59543, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 59544, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4492
4510
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__13);
|
|
4493
4511
|
return ret;
|
|
4494
4512
|
},
|
|
4495
4513
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4496
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4514
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59543, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 59544, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4497
4515
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__14);
|
|
4498
4516
|
return ret;
|
|
4499
4517
|
},
|
|
4500
4518
|
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
4501
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4519
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 62795, function: Function { arguments: [], shim_idx: 62796, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4502
4520
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__2_);
|
|
4503
4521
|
return ret;
|
|
4504
4522
|
},
|
|
4505
4523
|
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
4506
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4524
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63169, function: Function { arguments: [], shim_idx: 63170, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4507
4525
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__3_);
|
|
4508
4526
|
return ret;
|
|
4509
4527
|
},
|
|
4510
4528
|
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
4511
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4529
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63205, function: Function { arguments: [Externref], shim_idx: 63206, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4512
4530
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__1_);
|
|
4513
4531
|
return ret;
|
|
4514
4532
|
},
|
|
4515
4533
|
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
4516
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4534
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [Externref], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4517
4535
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2_);
|
|
4518
4536
|
return ret;
|
|
4519
4537
|
},
|
|
4520
4538
|
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
4521
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4539
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 64649, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4522
4540
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_);
|
|
4523
4541
|
return ret;
|
|
4524
4542
|
},
|
|
4525
4543
|
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
4526
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4544
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4527
4545
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__20);
|
|
4528
4546
|
return ret;
|
|
4529
4547
|
},
|
|
4530
4548
|
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
4531
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4549
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("Event")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4532
4550
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__21);
|
|
4533
4551
|
return ret;
|
|
4534
4552
|
},
|
|
4535
4553
|
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
4536
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4554
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4537
4555
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__22);
|
|
4538
4556
|
return ret;
|
|
4539
4557
|
},
|
|
4540
4558
|
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
4541
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4559
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4542
4560
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__23);
|
|
4543
4561
|
return ret;
|
|
4544
4562
|
},
|
|
4545
4563
|
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
4546
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4564
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4547
4565
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__24);
|
|
4548
4566
|
return ret;
|
|
4549
4567
|
},
|
|
4550
4568
|
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
4551
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4569
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4552
4570
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__25);
|
|
4553
4571
|
return ret;
|
|
4554
4572
|
},
|
|
4555
4573
|
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
4556
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4574
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 64642, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4557
4575
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__26);
|
|
4558
4576
|
return ret;
|
|
4559
4577
|
},
|
|
4560
4578
|
__wbindgen_cast_000000000000001c: function(arg0, arg1) {
|
|
4561
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4579
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64641, function: Function { arguments: [], shim_idx: 64657, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4562
4580
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__4_);
|
|
4563
4581
|
return ret;
|
|
4564
4582
|
},
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -56,6 +56,7 @@ export const op_get_permanent_permissions: (a: number, b: number, c: number, d:
|
|
|
56
56
|
export const op_get_permission_request_stream: (a: number) => any;
|
|
57
57
|
export const op_get_permission_types: (a: number) => any;
|
|
58
58
|
export const op_get_permission_used_stream: (a: number) => any;
|
|
59
|
+
export const op_get_platform: (a: number) => [number, number];
|
|
59
60
|
export const op_get_player_data: (a: number, b: number, c: number) => any;
|
|
60
61
|
export const op_get_players_in_scene: (a: number) => any;
|
|
61
62
|
export const op_get_previous_login: (a: number) => any;
|