添加了部分界面

This commit is contained in:
CortexCore
2023-07-08 00:02:32 +08:00
parent f4e85d4f9b
commit a2da9039f8
23 changed files with 768 additions and 48 deletions

View File

@@ -27,4 +27,12 @@ public static partial class MathNode
}
return nodes.Distinct();
}
public static void RemoveAllChild(Node self)
{
foreach (var x in self.GetChildren())
{
x.QueueFree();
}
}
}