Celestia/Celx 脚本/CELX Lua 方法/CEL 命令 unmark
外观
unmark { object <string> }
如果一个物体先前被标记,此命令会取消标记。
参数
- object <string>
- 定义要取消标记的物体的名称。无默认值。
CELX 等效项 -1
基于 celestia:unmark() 方法。
- 找到要取消标记的名称为 <string> 的物体,并存储在 "objectname" 中。
objectname = celestia:find( <string> )
- 使用 Celestia 方法在 "objectname" 上移除标记。
celestia:unmark(objectname)
总结
objectname = celestia:find( <string> ) celestia:unmark(objectname)
CELX 等效项 -2
基于 object:unmark() 方法。
- 找到要取消标记的名称为 <string> 的物体,并存储在 "objectname" 中。
objectname = celestia:find( <string> )
- 使用物体方法在 "objectname" 上移除标记。
objectname:unmark()
总结
objectname = celestia:find( <string> ) objectname:unmark()
示例
此示例取消标记地球。
CEL
unmark { object "Sol/Earth" }
CELX 使用 celestia:unmark() 方法
earth = celestia:find("Sol/Earth") celestia:unmark(earth)
CELX 使用 object:unmark() 方法
earth = celestia:find("Sol/Earth") earth:unmark()