<span style="color:#ff0000;">背景:</span>
cc.Class({
extends: cc.Component,
properties: {
//左边‘-’按钮
leftBtn:cc.Node,
//右边‘+’按钮
rightBtn:cc.Node,
//背景图像
BackGround:cc.Node,
//炮台节点
batteryList:{
default:[],
type:cc.Node,
},
//子弹预制
bulletList:{
default:[],
type:cc.prefab,
},
},
onLoad: function () {
//炮台角度
this.currentBatteryRotation = 0;
//当前炮台
this.currentBattery = this.batteryList[0];
//当前炮台类型
this.currentBatteryIndex = 0;
//炮台冷却时间
this.batteryTime = 40;
//当前冷却时间
this.currentBatteryTime = 1;
//是否可以发射子弹
this.isCanBattery = true;
//添加选择炮台事件
this.addBatteryEvent();
//点击开火事件