Add debug log

This commit is contained in:
Xuwznln
2026-01-13 17:51:18 +08:00
parent 03423e4791
commit 6f143b068b
3 changed files with 12 additions and 1 deletions

View File

@@ -608,6 +608,16 @@ class ResourceTreeSet(object):
"""
return [tree.root_node for tree in self.trees]
@property
def root_nodes_uuid(self) -> List[ResourceDictInstance]:
"""
获取所有树的根节点
Returns:
所有根节点的资源实例列表
"""
return [tree.root_node.res_content.uuid for tree in self.trees]
@property
def all_nodes(self) -> List[ResourceDictInstance]:
"""