1 2 3 4 5 6 7 8 9 10
namespace Godot { public partial class Node { public T GetNode<T>(NodePath path) where T : Godot.Node { return (T)GetNode(path); } } }