Fixed Pickup behaviour
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user