(ko)
| 35 | |
| 36 | |
| 37 | def get_children(ko): |
| 38 | children = [] |
| 39 | for o in bpy.data.objects: |
| 40 | if o.parent == ko: |
| 41 | children.append(o) |
| 42 | return sorted(children, key=lambda c: c.name) |
| 43 | |
| 44 | |
| 45 | def delete_parent_recursively(ko): |
no outgoing calls
no test coverage detected