Hi !The few tests I did seem to indicate that get_children() will return the list in the order the children were created, if they are at the same z value.Do you think I can rely on this, or does it seem too unsure to you ?
There is nothing about this on documentation, so I looked at the code, and it uses bisect.insort_right, which preserves order, so I guess it's ok, but maybe some of you know something I should be aware of.Thank you for reading
--