一个用汇编语言写的推箱子游戏,能很好的练习对汇编语言的理解
2022-12-11 10:36:13 8KB 推箱子汇编语言
1
简单的小游戏,适用于初学者,可在家在学校练习
2022-05-20 19:07:17 967B c++
1
cocos creator实现的推箱子游戏,含源码和功能;游戏一共有100关卡。 cc.Class({ extends: cc.Component, properties: { // foo: { // // ATTRIBUTES: // default: null, // The default value will be used only when the component attaching // // to a node for the first time // type: cc.SpriteFrame, // optional, default is typeof default // serializable: true, // optional, default is true // }, // bar: { // get () { // return this._bar; // }, // set (value) { // this._bar = value; // } // }, starImg : cc.Node, itemBg : cc.Node, levelTxt : cc.Node, }, // LIFE-CYCLE CALLBACKS: onLoad () { }, start () { }, //--------显示星星数量-------- /** * @description: 显示星星数量 * @param {boolean} isOpen 是否开启 * @param {starCount} 星星数量 * @param {cc.SpriteAtlas} levelImgAtlas 纹理图 * @param {number} level 关卡 * @return: */ showStar : function(isOpen, starCount, levelImgAtlas, level){ this.itemBg.attr({"_level_" : level}); if(isOpen){ this.itemBg.getComponent(cc.Sprite).spriteFrame = levelImgAtlas.getSpriteFrame("pass_bg"); this.starImg.active = true; this.starImg.getComponent(cc.Sprite).spriteFrame = levelImgAtlas.getSpriteFrame("point" + starCount); this.levelTxt.opacity = 255; this.itemBg.getComponent(cc.Button).interactable = true; }else{ this.itemBg.getComponent(cc.Sprite).spriteFrame = levelImgAtlas.getSpriteFrame("lock"); this.starImg.active = false; this.levelTxt.opacity = 125; this.itemBg.getComponent(cc.Button).interactable = false; } this.levelTxt.getComponent(cc.Label).string = level; }, //按钮回调函数响应 btnCallBack : function(event, customEventData){ if(this._callfunc){ this._callfunc(this.itemBg._level_); } }, levelFunc : function(callfunc){ this._callfunc = callfunc; }, // update (dt) {}, });
2021-12-16 11:29:21 763KB cocos creator
1
Android推箱子项目适合初学者学习,Android版本为3.5,已调试好代码
2021-12-09 20:04:33 50.09MB 安卓
1
android版推箱子,有源码 共有20关,能自动保存,能撤销
2021-09-09 11:05:43 147KB android pushbox java 游戏
1
C++课程设计 C++ 语言编写的推箱子小游戏 PushBox推箱子.rar
2021-08-15 01:45:12 2.95MB C++ 课程设计 推箱子 小游戏
1
刚做的推箱子的小游戏,老师布置的作业,在小组合力攻关下完美的完成,非常适合学习c++的同志,快来下载吧
2019-12-21 19:40:35 11.63MB c++ pushbox
1