Fixed Pickup behaviour

This commit is contained in:
2025-04-06 22:03:13 +02:00
parent 26502f2d37
commit f08f3a7978
8 changed files with 107 additions and 38 deletions
@@ -4,5 +4,14 @@ namespace Babushka.scripts.CSharp.Common.Farming;
public partial class FarmingControls : Node3D
{
[Export] private Sprite3D _hoeSprite;
private bool _hoeInHand = false;
public void ActivateHoe(bool activate)
{
_hoeSprite.Visible = !activate;
_hoeInHand = !activate;
}
}