using Godot; using System.Collections.Generic; using System.Linq; namespace Rokojori { public class VFXTools { public static List GetGeometryInstance3Ds( Node[] targets, bool includeChildren ) { if ( ! includeChildren ) { var list = targets.ToList(); return list.FilterType(); } return Nodes.GetAnyChildren( targets ).FilterType(); } } }