卷帘功能忽略文本框

This commit is contained in:
zh
2025-08-26 14:27:05 +08:00
parent 0c4c956868
commit 91cc200917
2 changed files with 3 additions and 2 deletions

View File

@ -1298,8 +1298,8 @@ function setActiveId(ids = []) {
let thatP = sdkP.entityMap.get(activeIds[i])
let thatD = sdkD.entityMap.get(activeIds[i])
if (!thatP || (thatP.type === 'terrain' || !thatP.show)) {
// let thatD = sdkD.entityMap.get(activeIds[i])
if (!thatP || (thatP.type === 'terrain' || !thatP.show) || thatP.type === 'TextBox') {
leftElm.style.display = 'none'
rightElm.style.display = 'none'
continue