diff options
author | tpart <tpart120@proton.me> | 2024-09-16 15:54:54 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-16 15:54:54 +0200 |
commit | 610cae3aaf5db7d3c2d50e18286ce306503a1bcb (patch) | |
tree | 4f6f9e8fa148fd0307c47e5a620cca0a0119a0d9 /client/map | |
parent | a5ae525cb15903b697fc67751130080ff30df585 (diff) | |
download | hurrycurry-610cae3aaf5db7d3c2d50e18286ce306503a1bcb.tar hurrycurry-610cae3aaf5db7d3c2d50e18286ce306503a1bcb.tar.bz2 hurrycurry-610cae3aaf5db7d3c2d50e18286ce306503a1bcb.tar.zst |
Fix sliced cheese height
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/items/sliced_cheese.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/items/sliced_cheese.gd b/client/map/items/sliced_cheese.gd index 26673bad..b803ace4 100644 --- a/client/map/items/sliced_cheese.gd +++ b/client/map/items/sliced_cheese.gd @@ -19,3 +19,6 @@ extends Item func _init(owned_by_: Node3D): super(owned_by_) base.add_child(load("res://map/items/sliced_cheese.tscn").instantiate()) + +static func height() -> float: + return .025 |