12 lines
224 B
C#
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);
|
|
}
|
|
|
|
}
|