能在编辑器中显示属性注释内容嘛?

比如脚本里自定义属性
properties: {
lines_count: 4,//列总数
}

在编辑器设定属性的地方,鼠标悬停可以这样显示"列总数"

方便协作

tooltip

properties: {
    lines_count: {
        default: 4,
        tooltip: "列总数"
    }
}
4赞

:+1: