Cocos2d-js06-添加分数和死亡判断

Cocos2d-js06-添加分数和死亡判断

1、添加分数,代码

//添加分数 score = new cc.LabelTTF("分数:0","Arial",50);
score.setPosition(cc.p(winSize.width/2,winSize.height - 130));
this.addChild(score,4);
//添加分数 this.m_score += 100;
score.setString("分数:"+this.m_score);
 
2、死亡判断,代码

//走出边界,游戏结束
if(this._head.Now_col < 0 || this._head.Now_row < 0 || this._head.Now_col >= 10 || this._head.Now_row >= 10){
this.onGameOver();
}

//蛇头碰到蛇尾,游戏结束
if(SNAKE_BODY.length != 0){
for(var i = SNAKE_BODY.length - 1; i >= 0; i--){
if(this._head.Now_col== SNAKE_BODY[i].Now_col&& this._head.Now_row== SNAKE_BODY[i].Now_row){
this.onGameOver();
}
}
}

3、onGameOver方法

onGameOver:function(){
director.pause();
var gameOver= new cc.LabelTTF("GameOver!", 50);
var over = new cc.MenuItemLabel(gameOver,function(){
window.location.href = "http://h5.9miao.com";
});
over.setPosition(cc.p(size.width/2,size.height/2));
var menu = new cc.Menu(over);
menu.x = 0;
menu.y = 0;
this.addChild(menu,5);

},


视频地址:http://www.9miaoketang.com/course/37 课程讨论帖地址:http://www.9miao.com/thread-64587-1-1.html 源码地址:https://store.cocos.com/stuff/show/128289.html QQ交流群:83459374 后期也会把该源码传在群里面去,欢迎大家加入讨论!

相关文章

    本文实践自 RayWenderlich、Ali Hafizji 的文章《...
Cocos-code-ide使用入门学习地点:杭州滨江邮箱:appdevzw@1...
第一次開始用手游引擎挺激动!!!进入正题。下载资源1:从C...
    Cocos2d-x是一款强大的基于OpenGLES的跨平台游戏开发...
1.  来源 QuickV3sample项目中的2048样例游戏,以及最近《...
   Cocos2d-x3.x已经支持使用CMake来进行构建了,这里尝试...