|
|
|
@ -50,7 +50,7 @@ export class ModelInfo_building extends ModelInfo {
|
|
|
|
|
for (let i = 0; i < allTransformNode.length; i++) { |
|
|
|
|
if (TsTool.stringContain(allTransformNode[i].name, "WAI")) { |
|
|
|
|
this.neiRoot = allTransformNode[i]; |
|
|
|
|
console.log("找到关键节点wai"); |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -58,6 +58,10 @@ export class ModelInfo_building extends ModelInfo {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.neiRoot == null) { |
|
|
|
|
if (!TsTool.stringContain(this.modelBox.name, "Box")) { |
|
|
|
|
console.error("没有关键节点", this.modelBox.name); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.neiRoot = this.modelBox; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -156,6 +160,9 @@ export class ModelInfo_building extends ModelInfo {
|
|
|
|
|
//更新跟随UI的名称
|
|
|
|
|
updateName(name: string) { |
|
|
|
|
this.uiIconBtn.textBlock.text = name; |
|
|
|
|
if (!ModeManager.s_isMakeMode) { |
|
|
|
|
this.showFollowUI(false); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|