更新1.6.1后出现 Each script can have at most one Component

Each script can have at most one Component.
A Class already exists with the same classname : “组件名称”.
A Class already exists with the same cid : “6678731dQ5BH4j1jTGn7imm”.

该脚本是否有get方法?

很多个脚本都报了这个错,但是整个项目只有一个脚本有get方法

1、 如果用了TypeScript的@property装饰器,要给属性添加默认值:

@property(cc.Node)
private someNode: cc.Node = null;

2、 如果用了Get方法,要保证get中访问的东西不存在时不会出错。比如:

private get width(): number {
    return this.node.width;
}
// 有可能node不存在,改为:
private get width(): number {
    return this.node ? this.node.width : 0;
}

第二点将在 1.6.2 修正,之后不需要这样。

请问大神 1.6.2什么时候放出来呢?