diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-29 13:54:18 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-06-29 13:54:18 +0200 |
commit | ad994c53d00538ceb7627cb3db98da920b309feb (patch) | |
tree | ea4d176c9c636b1f0de69359f4a2cdfeaf8f8f0f /client/map/items/plate.gd | |
parent | fc14456cdb32fc82d3b387fa6f8d8f0505fe6c7a (diff) | |
download | hurrycurry-ad994c53d00538ceb7627cb3db98da920b309feb.tar hurrycurry-ad994c53d00538ceb7627cb3db98da920b309feb.tar.bz2 hurrycurry-ad994c53d00538ceb7627cb3db98da920b309feb.tar.zst |
set plate base height
Diffstat (limited to 'client/map/items/plate.gd')
-rw-r--r-- | client/map/items/plate.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 4431a6c8..ac6a6c00 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -21,4 +21,4 @@ func _init(owned_by_: Node3D): add_child(load("res://map/items/plate.tscn").instantiate()) static func base_position() -> Vector3: - return Vector3(0., 0.015, 0.) + return Vector3(0., 0.05, 0.) |