vim-web 0.3.44-dev.37 → 0.3.44-dev.38
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/dist/vim-web.iife.js +7 -2
- package/dist/vim-web.iife.js.map +1 -1
- package/dist/vim-web.js +7 -2
- package/dist/vim-web.js.map +1 -1
- package/package.json +1 -1
package/dist/vim-web.js
CHANGED
|
@@ -59199,7 +59199,12 @@ class RpcSafeClient {
|
|
|
59199
59199
|
this.rpc.RPCEnableSectionBox(enable);
|
|
59200
59200
|
}
|
|
59201
59201
|
RPCSetSectionBox(state) {
|
|
59202
|
-
this.rpc.RPCSetSectionBox(
|
|
59202
|
+
this.rpc.RPCSetSectionBox(
|
|
59203
|
+
{
|
|
59204
|
+
...state,
|
|
59205
|
+
box: state.box ?? new Box3(new Vector3(), new Vector3())
|
|
59206
|
+
}
|
|
59207
|
+
);
|
|
59203
59208
|
}
|
|
59204
59209
|
async RPCGetSectionBox() {
|
|
59205
59210
|
return await this.safeCall(
|
|
@@ -61821,7 +61826,7 @@ class SectionBox2 {
|
|
|
61821
61826
|
__publicField(this, "_visible", false);
|
|
61822
61827
|
__publicField(this, "_interactible", false);
|
|
61823
61828
|
__publicField(this, "_clip", false);
|
|
61824
|
-
__publicField(this, "_box"
|
|
61829
|
+
__publicField(this, "_box");
|
|
61825
61830
|
__publicField(this, "_rpc");
|
|
61826
61831
|
__publicField(this, "_interval");
|
|
61827
61832
|
__publicField(this, "_animationFrame");
|