aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/item.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-08 14:25:39 +0200
committertpart <tpart120@proton.me>2024-09-08 14:25:39 +0200
commite659c39776829a134a2514cf76347f69b53a38e8 (patch)
treed6149aeb456e43bd9ff0b393069e42c50c13ce7b /client/map/items/item.gd
parent8fdf05cb714e0e8ce852405bdeb98752127e3e94 (diff)
downloadhurrycurry-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.gd3
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