flexible instance movement

This commit is contained in:
ForestOfLight
2025-09-18 18:42:41 -07:00
Unverified
parent 2d4631c1f7
commit 9539a1d1a1
8 changed files with 178 additions and 40 deletions
@@ -246,19 +246,6 @@ export class StructureInstance {
this.setLayer(this.options.currentLayer - 1);
}
startFlexibleMove(player) {
this.flexMovingPlayerId = player.id;
this.disable();
// create flex movement outliner
}
stopFlexibleMove(finalLocation) {
// disable flex movement outliner
this.move(this.getDimension(), finalLocation);
this.enable();
this.flexMovingPlayerId = void 0;
}
isFlexibleMoving() {
return this.flexMovingPlayerId !== void 0;
}