mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
节点树显示绿色为预制体
This commit is contained in:
parent
cc3c93c56c
commit
b6b5a68014
@ -303,8 +303,12 @@ export class Inspector extends InjectEvent {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
private calcColor(node: any) {
|
private calcColor(node: any) {
|
||||||
|
if (node._prefab) {
|
||||||
|
return "#00ff00ff";
|
||||||
|
} else {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// 收集节点信息
|
// 收集节点信息
|
||||||
getNodeChildren(node: any, data: TreeData) {
|
getNodeChildren(node: any, data: TreeData) {
|
||||||
data.id = node.uuid;
|
data.id = node.uuid;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user