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