This commit is contained in:
2026-05-17 13:59:16 +08:00
parent f76b19697c
commit 870477f864
7 changed files with 176 additions and 93 deletions

View File

@ -223,6 +223,7 @@ export class AppPlacementWall {
this.scene
);
line.color = new Color3(1, 1, 1); // 白色
line.isPickable = false; // 禁用边框的点击
this.borderLines.push(line);
});
}
@ -265,6 +266,7 @@ export class AppPlacementWall {
this.scene
);
line.color = lineColor;
line.isPickable = false; // 禁用边框的点击
this.borderLines.push(line);
});
}