cocosts声明数组

方法1
 @property([cc.Integer])
    phoneArray :number[] = [];
方法2
  @property(cc.Node)
    items : Array = [];

方法3
  @property({type : cc.AudioClip})
    SoundArray : cc.AudioClip[] = [];

声明数组元素是对象的

var ChargeCoinItem = cc.Class({
    name: 'chargeCoinItem',
    properties: {
        coinLabelString:cc.String,
        coinBtnString:cc.String,     
    }
});//放在文件最上方

 @property(ChargeCoinItem)
    ChargeListInfo: Array = [];

你可能感兴趣的:(cocosts声明数组)