添加飞线显示隐藏

This commit is contained in:
2025-07-17 17:53:53 +08:00
parent 01b07a6fa2
commit 60378db79d

View File

@ -215,6 +215,17 @@ class FlowLine extends Base {
this.getLine(this, this.positions)
}
}
get show() {
return this.options.show
}
set show(v) {
this.options.show = v
let entity = this.viewer.entities.getById(this.options.id)
if (entity) {
entity.show = v
}
}
get heightDifference() {
return this.options.heightDifference