cc.Class({ extends: cc.Component, properties: { }, onLoad() { this.init(); }, start() { }, update(dt) { }, init(){ this.isDie = false; this.node.active = true; this.normal(); }, onCollisionEnter(other, self) { if (self.tag == 10&&this.isDie==false) { console.log("敌机碰到了,英雄"); this.die(); } }, normal(){ var anim = this.getComponent(cc.Animation); anim.play("hero_ animation_clip"); }, die(){ this.isDie= true; game.game_state = 4 ;//游戏结束 var anim = this.getComponent(cc.Animation); anim.play("hero_die_animation_clip"); anim.over = function () { //game.on_enemy_killed(this.node, 1); this.node.active = false; }.bind(this); } });
站长微信:xiaomao0055
站长QQ:14496453