登录 注册
当前位置:主页 > 资源下载 > 50 > CocosCreator一步一步实现重力球游戏zhongliText.zip下载

CocosCreator一步一步实现重力球游戏zhongliText.zip下载

  • 更新:2024-09-09 20:05:32
  • 大小:679KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:cocos2D - 游戏开发
  • 格式:ZIP

资源介绍

CocosCreator一步一步实现重力球游戏zhongliText.zip //碰撞监听脚本 cc.Class({ extends: cc.Component, properties: { }, onLoad () { }, onDestroy () { }, onBeginContact ( contact, selfCollider, otherCollider){ if(selfCollider.tag == 0 && otherCollider.tag == 0){ cc.log("onBeginContact..."); //碰撞开始 this.gameOver(); } },   onEndContact (contact, selfCollider, otherCollider){ //cc.log("onEndContact...");//碰撞结束 },   onPreSolve(contact, selfCollider, otherCollider){ //cc.log("onPreSolve...");//碰撞持续,接触时被调用 },   onPostSolve (contact, selfCollider, otherCollider){ //cc.log("onPostSolve...");//碰撞接触更新完后调用,可以获得冲量信息 }, //游戏结束 gameOver (){ if(this.callBack){ this.callBack(); } }, gameOverCallBack (callBack){ this.callBack = callBack; }, //隐藏动作 hideBall (){ this.node.runAction(cc.fadeOut(1.0)); }, //显示动作 showBall(){ this.node.opacity = 0; this.node.runAction(cc.fadeIn(0.5)); } });