SupaLidlGame/Extensions/Node.cs

37 lines
807 B
C#
Raw Normal View History

2022-11-25 09:11:46 -08:00
using Godot;
namespace SupaLidlGame.Extensions
{
public static class NodeExtensions
{
/// <summary>
/// Iterates through each ancestor until it finds an ancestor of type
/// <c>T</c>
/// </summary>
public static T GetAncestor<T>(this Node node) where T : Node
{
Node parent;
while ((parent = node.GetParent()) != null)
{
if (parent is T t)
{
return t;
}
node = parent;
}
return null;
}
2022-11-25 11:59:55 -08:00
/// <summary>
///
/// </summary>
public static T GetNode<T>(this Node node, string name) where T : Node
{
return node.GetNode(name) as T;
}
2022-11-25 09:11:46 -08:00
}
}