@rpgjs/vite 5.0.0-beta.13 → 5.0.0-beta.14
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/CHANGELOG.md +7 -0
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -6809,7 +6809,7 @@ function replaceConfigImport() {
|
|
|
6809
6809
|
};
|
|
6810
6810
|
}
|
|
6811
6811
|
//#endregion
|
|
6812
|
-
//#region ../server/dist/module-
|
|
6812
|
+
//#region ../server/dist/module-hfb9Mz5M.js
|
|
6813
6813
|
/******************************************************************************
|
|
6814
6814
|
Copyright (c) Microsoft Corporation.
|
|
6815
6815
|
|
|
@@ -8683,6 +8683,24 @@ var RpgCommonPlayer = class {
|
|
|
8683
8683
|
set pushable(value) {
|
|
8684
8684
|
this._pushable.set(!!value);
|
|
8685
8685
|
}
|
|
8686
|
+
get through() {
|
|
8687
|
+
return this._through();
|
|
8688
|
+
}
|
|
8689
|
+
set through(value) {
|
|
8690
|
+
this._through.set(!!value);
|
|
8691
|
+
}
|
|
8692
|
+
get throughOtherPlayer() {
|
|
8693
|
+
return this._throughOtherPlayer();
|
|
8694
|
+
}
|
|
8695
|
+
set throughOtherPlayer(value) {
|
|
8696
|
+
this._throughOtherPlayer.set(!!value);
|
|
8697
|
+
}
|
|
8698
|
+
get throughEvent() {
|
|
8699
|
+
return this._throughEvent();
|
|
8700
|
+
}
|
|
8701
|
+
set throughEvent(value) {
|
|
8702
|
+
this._throughEvent.set(!!value);
|
|
8703
|
+
}
|
|
8686
8704
|
/**
|
|
8687
8705
|
* Get whether direction changes are locked
|
|
8688
8706
|
*
|