newlon/scripts/plants/behaviours/SunflowerBehaviour.cs
2025-07-11 22:35:36 +05:00

12 lines
224 B
C#

using Godot;
namespace Newlon.Components.Plants.Behaviours;
public partial class SunflowerBehaviour : BaseBehaviour
{
public void Timeout()
{
_tree.Set("parameters/Tree/conditions/produce", true);
}
}