using Godot; namespace Newlon.Components.Plants.Behaviours; public partial class SunflowerBehaviour : Node { private AnimationTree _tree; public override void _Ready() { _tree = GetNode("../AnimationTree"); } public void Timeout() { _tree.Set("parameters/conditions/produce", true); } }