🆕 Added Pickup furni to the floorplan

This commit is contained in:
duckietm
2026-05-27 09:41:18 +02:00
parent 72c9564488
commit b7688f9d2b
2 changed files with 12 additions and 88 deletions
@@ -4,9 +4,9 @@ export class UpdateFloorPropertiesMessageComposer implements IMessageComposer<Co
{
private _data: ConstructorParameters<typeof UpdateFloorPropertiesMessageComposer>;
constructor(model: string, doorX: number, doorY: number, doorDirection: number, thicknessWall: number, thicknessFloor: number, wallHeight: number)
constructor(model: string, doorX: number, doorY: number, doorDirection: number, thicknessWall: number, thicknessFloor: number, wallHeight: number, autoPickup: boolean = false)
{
this._data = [model, doorX, doorY, doorDirection, thicknessWall, thicknessFloor, wallHeight];
this._data = [model, doorX, doorY, doorDirection, thicknessWall, thicknessFloor, wallHeight, autoPickup];
}
public getMessageArray()