Unity-Scene-Query
Unity-Scene-Query copied to clipboard
Request: Support child indexing
trafficstars
It would be great if we could access the n'th child object.
Find the 2nd child of game object "Foo":
var xxx = root.SelectAll("Foo[2]");
Or a syntax that supports ranges?
var xxx = root.SelectAll("Foo[position()>1 and position()<3]");