2024-08-04 09:08:12 +00:00
|
|
|
using Godot;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2024-08-04 09:08:12 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public enum NodePathLocatorType
|
|
|
|
|
{
|
|
|
|
|
DirectChildrenAndSiblings,
|
|
|
|
|
DirectChildren,
|
|
|
|
|
Siblings,
|
|
|
|
|
AnyChildren,
|
|
|
|
|
SiblingsAndAnyChildren
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NodePathLocator
|
|
|
|
|
{
|
|
|
|
|
public NodePathLocatorType type = NodePathLocatorType.DirectChildrenAndSiblings;
|
|
|
|
|
public int parentOffset = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|