diff options
author | tpart <tpart120@proton.me> | 2024-09-08 14:25:39 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-08 14:25:39 +0200 |
commit | e659c39776829a134a2514cf76347f69b53a38e8 (patch) | |
tree | d6149aeb456e43bd9ff0b393069e42c50c13ce7b /client/map/items/item.gd | |
parent | 8fdf05cb714e0e8ce852405bdeb98752127e3e94 (diff) | |
download | hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar.bz2 hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar.zst |
Implement item stacking system
Diffstat (limited to 'client/map/items/item.gd')
-rw-r--r-- | client/map/items/item.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index 59789d94..c7c06b05 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -77,3 +77,6 @@ func put(): static func base_position() -> Vector3: return Vector3(0., 0., 0.) + +static func height() -> float: + return 0.1 |