12 lines
222 B
C#
12 lines
222 B
C#
using Godot;
|
|
|
|
namespace Newlon.Components;
|
|
|
|
public abstract partial class BaseBehaviour : Node
|
|
{
|
|
protected AnimationTree _tree;
|
|
public override void _Ready()
|
|
{
|
|
_tree = GetNode<AnimationTree>("../AnimationTree");
|
|
}
|
|
}
|