使用方法: https://blog.csdn.net/K86338236/article/details/123259746
2022-10-31 16:04:58 247KB cocos-creator ts 游戏开发 滑动列表优化
1
冒险游戏创建工具包. Adventure Creator.rar
2022-10-27 18:07:15 56.5MB unity
AD中pcb插入图片插件,将图片用电脑绘图打开另存为BMP单色位,通过AD打开DXP,运行脚本打开此插件加载图片,注意选择丝印层
2022-10-24 21:34:13 15KB pcb PCB插入图片 AD AD插入图片
1
一款功能强大的邮件编辑软件,内置了各种主流的邮件模板,用户可以轻松加载想要的模板进行编辑,不同的模板适用于不同的环境,在每一个模板的基础上还能进行自定义调整,让电子邮件造型完美适配心目中的理想效果。
2022-10-19 19:05:49 122.6MB 邮件编辑
1
电脑软件pdf24-私人X64—creator-10.6.2
2022-10-17 21:01:31 125.2MB 电脑软件pdf24-私人X64—
电脑软件pdf24-creator-10.1.1
2022-10-17 21:01:30 122.25MB 电脑软件pdf24-creato
PDG:程序依赖图 由以下规则定义的非常基本的命令性程序的程序依赖关系图创建器。 assignment := x=Aexpr; conditional1 := if(Bexpr){ stmts; } else {stmts; } endif conditional2 := if(Bexpr){ stmts; } endif iterative := while(Bexpr){stmts; } stmt := assignment | conditionsal1 | conditional2 | iterative stmts := stmt | stmts; stmt Aexpr: = constant | variable | Aexpr + Aexpr | Aexpr – Aexpr | Aexpr * Aexpr | Aexpr /
2022-10-06 13:03:18 294KB C++
1
cocos creator 模仿羊了个羊小游戏 ,包含资源,源码,音频等。可直接发布到微信小游戏
2022-09-24 22:07:25 4.51MB 羊了个羊 微信小游戏 cocos-creator
1
本资源为基于QT C++的源码工程,实现了dll动态链接库的生成模板。
2022-09-24 17:54:10 3KB dll 动态链接库 qt creator
1
Creator打地鼠游戏hitmouse.zip // Learn cc.Class: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/class.html // - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/class.html // Learn Attribute: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html // - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html // - [English] https://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html cc.Class({ extends: cc.Component, properties: { mouse: [cc.Node], hammer: cc.Node, txtCount: cc.Label, }, // LIFE-CYCLE CALLBACKS: onLoad () { var manager = cc.director.getCollisionManager(); manager.enabled = true; this.count = 0; this.txtCount.string = this.count; }, start () { cc.director.getScheduler().schedule(this.logic, this, 0.5, false); this.node.on(cc.Node.EventType.TOUCH_START, function(event){ for(let i = 0; i < this.mouse.length; i++){ if(this.mouse[i].opacity == 0){ continue; } let parent = this.mouse[i].parent; let maskPos = parent.parent.convertToWorldSpaceAR(parent.position); let maskRect = cc.rect(maskPos.x - parent.width / 2 , maskPos.y , parent.width, parent.height); let mouse = this.mouse[i]; let mousePos = parent.convertToWorldSpaceAR(mouse.position); let mousRect = cc.rect(mousePos.x - mouse.width / 2, mousePos.y - mouse.height / 2, mouse.width, mouse.height); let mixRect = new cc.Rect(); maskRect.intersection(mixRect, mousRect); if(mixRect.contains(event.getLocation())){ this.hammer.position = parent.position; this.hammer.active = true; this.count++; this.txtCount.string = this.count; break; } } }, this); this.node.on(cc.Node.EventType.TOUCH_END, function(event){ this.hammer.active = false; }, this); }, logic(){ let index = Math.floor(Math.random() * 9); cc.log(`index:${index}`); if(index < 0 || index >= this.mouse.length){ return; } this.mouse[index].getComponent('mouse').appear(); }, // update (dt) {}, });
2022-09-23 16:05:12 468KB Creator打地鼠
1