diff options
author | tpart <tpart120@proton.me> | 2024-09-16 14:17:20 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-16 14:17:20 +0200 |
commit | 3d9141754ce8f4857874fe4eddf08f0f56c1ef74 (patch) | |
tree | df5740fe06b783df915320b3b25ab4871b9bb5bb /client | |
parent | e469d27b2351fd6e8bac1989d15aeb523efb3bfe (diff) | |
download | hurrycurry-3d9141754ce8f4857874fe4eddf08f0f56c1ef74.tar hurrycurry-3d9141754ce8f4857874fe4eddf08f0f56c1ef74.tar.bz2 hurrycurry-3d9141754ce8f4857874fe4eddf08f0f56c1ef74.tar.zst |
Fix plate base position
Diffstat (limited to 'client')
-rw-r--r-- | client/map/items/plate.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 28fd3f46..f8afba5a 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -44,5 +44,8 @@ func setup_sounds(): take_sound.setup([preload("res://map/items/sounds/plate_take.ogg")]) put_sound.setup([preload("res://map/items/sounds/plate_put.ogg")]) +static func base_position() -> Vector3: + return Vector3(0., .025, 0.) + static func height() -> float: return .05 |