This commit is contained in:
zh
2025-09-23 10:18:54 +08:00
parent 1afc691ec2
commit b29753453a
21 changed files with 139 additions and 1369 deletions

View File

@ -238,6 +238,7 @@ class BaseTerrain extends BaseSource {
* @param state=false {boolean} 状态: true打开, false关闭
*/
async edit(state = false) {
return
this.originalOptions = this.deepCopyObj(this.options)
if (this._DialogObject && this._DialogObject.close) {
this._DialogObject.close()
@ -287,6 +288,11 @@ class BaseTerrain extends BaseSource {
this._elms.name = [nameElm]
}
reset() {
this.options = this.deepCopyObj(this.originalOptions)
this.name = this.options.name
}
flicker() { }
}