是的,又是我,在折腾小游戏的路上流连忘返了,之前用vue+canvas实现了一系列简单的小游戏,感兴趣的小伙伴可以戳戳以往的几个帖子:

《VUE实现一个Flappy Bird~~~》

《VUE+Canvas实现上吊火柴人猜单词游戏》

《VUE+Canvas 实现桌面弹球消砖块小游戏》

今天就来实现一个雷霆战机打字游戏,玩法很简单,每一个“敌人”都是一些英文单词,键盘正确打出单词的字母,飞机就会发射一个个子弹消灭“敌人”,每次需要击毙当前“敌人”后才能击毙下一个,一个比手速和单词熟练度的游戏。

首先来看看最终效果图:

emmmmmmmmmmmmm,界面UI做的很简单,先实现基本功能,再考虑高大上的UI吧。

首先依旧是来分析界面组成:

(1)固定在画面底部中间的飞机;

(2)从画面上方随机产生的敌人(单词);

(3)从飞机头部发射出去,直奔敌人而去的子弹;

(4)游戏结束后的分数显示。

这次的游戏和之前的比,运动的部分貌似更多且更复杂了。在flappy bird中,虽然管道是运动的,但是小鸟的x坐标和管道的间隔、宽度始终不变,比较容易计算边界;在弹球消砖块游戏中,木板和砖块都是相对简单或者固定的坐标,只用判定弹球的边界和砖块的触碰面积就行。在雷霆战机消单词游戏中,无论是降落的目标单词,还是飞出去的子弹,都有着各自的运动轨迹,但是子弹又要追寻着目标而去,所以存在着一个实时计算轨道的操作。

万丈高楼平地起,说了那么多,那就从最简单的开始着手吧!

1、固定在画面底部中间的飞机

这个很简单没啥好说的,这里默认飞机宽度高度为40像素单位,然后将飞机画在画面的底部中间:

drawPlane() {let _this = this;_this.ctx.save();_this.ctx.drawImage(_this.planeImg,_this.clientWidth / 2 - 20,_this.clientHeight - 20 - 40,40,40);_this.ctx.restore();
},

2、从画面上方随机产生的敌人

这里默认设置每次在画面中最多只出现3个单词靶子,靶子的y轴移动速度为1.3,靶子的半径大小为10:

const _MAX_TARGET = 3; // 画面中一次最多出现的目标

const _TARGET_CONFIG = {

// 靶子的固定参数

speed: 1.3,

radius: 10

};

然后我们一开始要随机在词库数组里取出_MAX_TARGET个不重复的单词,并把剩下的词放进循环词库this.wordsPool中去:

generateWord(number) {// 从池子里随机挑选一个词,不与已显示的词重复let arr = [];for (let i = 0; i < number; i++) {let random = Math.floor(Math.random() * this.wordsPool.length);arr.push(this.wordsPool[random]);this.wordsPool.splice(random, 1);}return arr;
},
generateTarget() {// 随机生成目标let _this = this;let length = _this.targetArr.length;if (length < _MAX_TARGET) {let txtArr = _this.generateWord(_MAX_TARGET - length);for (let i = 0; i < _MAX_TARGET - length; i++) {_this.targetArr.push({x: _this.getRandomInt(_TARGET_CONFIG.radius,_this.clientWidth - _TARGET_CONFIG.radius),y: _TARGET_CONFIG.radius * 2,txt: txtArr[i],typeIndex: -1,hitIndex: -1,dx: (_TARGET_CONFIG.speed * Math.random().toFixed(1)) / 2,dy: _TARGET_CONFIG.speed * Math.random().toFixed(1),rotate: 0});}}
}

可以看出,this.targetArr是存放目标对象的数组:

一个初始的目标有随机分布在画面宽度的x;

y轴值为直径;

txt记录靶子代表的单词;

typeIndex记录“轰炸”这个单词时正在敲击的字符索引下标(用来分离已敲击字符和未敲击字符);

hitIndex记录“轰炸”这个单词时子弹轰炸的索引下标(因为子弹真正轰炸掉目标是在打完单词之后,毕竟子弹有飞行时间,所以通过hitIndex来判断子弹什么时候被击碎消失);

dx是靶子每帧在x轴偏移距离;

dy是靶子每帧在y轴偏移距离;

rotate设置靶子自转角度。

好了,生成了3个靶子,我们就让靶子先从上往下动起来吧:

drawTarget() {// 逐帧画目标let _this = this;_this.targetArr.forEach((item, index) => {_this.ctx.save();_this.ctx.translate(item.x, item.y); //设置旋转的中心点_this.ctx.beginPath();_this.ctx.font = "14px Arial";if (index === _this.currentIndex ||item.typeIndex === item.txt.length - 1) {_this.drawText(item.txt.substring(0, item.typeIndex + 1),-item.txt.length * 3,_TARGET_CONFIG.radius * 2,"gray");let width = _this.ctx.measureText(item.txt.substring(0, item.typeIndex + 1)).width; // 获取已敲击文字宽度_this.drawText(item.txt.substring(item.typeIndex + 1, item.txt.length),-item.txt.length * 3 + width,_TARGET_CONFIG.radius * 2,"red");} else {_this.drawText(item.txt,-item.txt.length * 3,_TARGET_CONFIG.radius * 2,"yellow");}_this.ctx.closePath();_this.ctx.rotate((item.rotate * Math.PI) / 180);_this.ctx.drawImage(_this.targetImg,-1 * _TARGET_CONFIG.radius,-1 * _TARGET_CONFIG.radius,_TARGET_CONFIG.radius * 2,_TARGET_CONFIG.radius * 2);_this.ctx.restore();item.y += item.dy;item.x += item.dx;if (item.x < 0 || item.x > _this.clientWidth) {item.dx *= -1;}if (item.y > _this.clientHeight - _TARGET_CONFIG.radius * 2) {// 碰到底部了_this.gameOver = true;}// 旋转item.rotate++;});
}

这一步画靶子没有什么特别的,随机得增加dx和dy,在碰到左右边缘时反弹。主要一点就是单词的绘制,通过typeIndex将单词一分为二,敲击过的字符置为灰色,然后通过measureText获取到敲击字符的宽度从而设置未敲击字符的x轴偏移量,将未敲击的字符设置为红色,提示玩家这个单词是正在攻击中的目标。

3、从飞机头部发射出去,直奔敌人而去的子弹

子弹是这个游戏的关键部分,在绘制子弹的时候要考虑哪些方面呢?

(1)目标一直是运动的,发射出去的子弹要一直“追踪”目标,所以路径是动态变化的;

(2)一个目标需要被若干个子弹消灭掉,所以什么时候子弹才从画面中抹去;

(3)当一个目标单词被敲击完了后,下一批子弹就要朝向下一个目标射击,所以子弹的路径是单独的;

(4)如何绘制出子弹的拖尾效果;

(5)如果锁定正在敲击的目标单词,使玩家敲完当前单词才能去击破下一个单词

这里先设置几个变量:

bulletArr: [], // 存放子弹对象

currentIndex: -1  //当前锁定的目标在targetArr中的索引

首先我们先来写一下键盘按下时要触发的函数:

handleKeyPress(key) {// 键盘按下,判断当前目标let _this = this;if (_this.currentIndex === -1) {// 当前没有在射击的目标let index = _this.targetArr.findIndex(item => {return item.txt.indexOf(key) === 0;});if (index !== -1) {_this.currentIndex = index;_this.targetArr[index].typeIndex = 0;_this.createBullet(index);}} else {// 已有目标正在被射击if (key ===_this.targetArr[_this.currentIndex].txt.split("")[_this.targetArr[_this.currentIndex].typeIndex + 1]) {// 获取到目标对象_this.targetArr[_this.currentIndex].typeIndex++;_this.createBullet(_this.currentIndex);if (_this.targetArr[_this.currentIndex].typeIndex ===_this.targetArr[_this.currentIndex].txt.length - 1) {// 这个目标已经别射击完毕_this.currentIndex = -1;}}}
},
// 发射一个子弹createBullet(index) {let _this = this;this.bulletArr.push({dx: 1,dy: 4,x: _this.clientWidth / 2,y: _this.clientHeight - 60,targetIndex: index});
}

这个函数做的事情很明确,拿到当前键盘按下的字符,如果currentIndex ===-1,证明没有正在被攻击的靶子,所以就去靶子数组里看,哪个单词的首字母等于该字符,则设置currentIndex为该单词的索引,并发射一个子弹;如果已经有正在被攻击的靶子,则看还未敲击的单词的第一个字符是否符合,若符合,则增加该靶子对象的typeIndex,并发射一个子弹,若当前靶子已敲击完毕,则重置currentIndex为-1。

接下来就是画子弹咯:

drawBullet() {// 逐帧画子弹let _this = this;// 判断子弹是否已经击中目标if (_this.bulletArr.length === 0) {return;}_this.bulletArr = _this.bulletArr.filter(_this.firedTarget);_this.bulletArr.forEach(item => {let targetX = _this.targetArr[item.targetIndex].x;let targetY = _this.targetArr[item.targetIndex].y;let k =(_this.clientHeight - 60 - targetY) /(_this.clientWidth / 2 - targetX); // 飞机头和目标的斜率let b = targetY - k * targetX; // 常量bitem.y = item.y - bullet.dy; // y轴偏移一个单位item.x = (item.y - b) / k;for (let i = 0; i < 15; i++) {// 画出拖尾效果_this.ctx.beginPath();_this.ctx.arc((item.y + i * 1.8 - b) / k,item.y + i * 1.8,4 - 0.2 * i,0,2 * Math.PI);_this.ctx.fillStyle = `rgba(193,255,255,${1 - 0.08 * i})`;_this.ctx.fill();_this.ctx.closePath();}});
},
firedTarget(item) {// 判断是否击中目标let _this = this;if (item.x > _this.targetArr[item.targetIndex].x - _TARGET_CONFIG.radius &&item.x < _this.targetArr[item.targetIndex].x + _TARGET_CONFIG.radius &&item.y > _this.targetArr[item.targetIndex].y - _TARGET_CONFIG.radius &&item.y < _this.targetArr[item.targetIndex].y + _TARGET_CONFIG.radius) {// 子弹击中了目标let arrIndex = item.targetIndex;_this.targetArr[arrIndex].hitIndex++;if (_this.targetArr[arrIndex].txt.length - 1 ===_this.targetArr[arrIndex].hitIndex) {// 所有子弹全部击中了目标let word = _this.targetArr[arrIndex].txt;_this.targetArr[arrIndex] = {// 生成新的目标x: _this.getRandomInt(_TARGET_CONFIG.radius,_this.clientWidth - _TARGET_CONFIG.radius),y: _TARGET_CONFIG.radius * 2,txt: _this.generateWord(1)[0],typeIndex: -1,hitIndex: -1,dx: (_TARGET_CONFIG.speed * Math.random().toFixed(1)) / 2,dy: _TARGET_CONFIG.speed * Math.random().toFixed(1),rotate: 0};_this.wordsPool.push(word); // 被击中的目标词重回池子里_this.score++;}return false;} else {return true;}
}

其实也很简单,我们在子弹对象中用targetIndex来记录该子弹所攻击的目标索引,然后就是一个y = kx+b的解方程得到飞机头部(子弹出发点)和靶子的轨道函数,计算出每一帧下每个子弹的移动坐标,就可以画出子弹了;

拖尾效果就是沿轨道y轴增长方向画出若干个透明度和半径逐渐变小的圆,就能实现拖尾效果了;

在firedTarget()函数中,用来过滤出已击中靶子的子弹,为了不影响还在被攻击的其他靶子在targetArr中的索引,不用splice删除,而是直接重置被消灭靶子的值,从wordPool中选出新的词,并把当前击碎的词重新丢回池子里,从而保证画面中不会出现重复的靶子。

4、游戏结束后的得分文字效果

游戏结束就是有目标靶子触碰到了底部就结束了。

这里其实是个彩蛋了,怎么样可以用canvas画出这种闪烁且有光晕的文字呢?切换颜色并且叠buff就行了,不是,叠轮廓stroke就行了

drawGameOver() {let _this = this;//保存上下文对象的状态_this.ctx.save();_this.ctx.font = "34px Arial";_this.ctx.strokeStyle = _this.colors[0];_this.ctx.lineWidth = 2;//光晕_this.ctx.shadowColor = "#FFFFE0";let txt = "游戏结束,得分:" + _this.score;let width = _this.ctx.measureText(txt).width;for (let i = 60; i > 3; i -= 2) {_this.ctx.shadowBlur = i;_this.ctx.strokeText(txt, _this.clientWidth / 2 - width / 2, 300);}_this.ctx.restore();_this.colors.reverse();
}

好了好了,做到这里就是个还算完整的小游戏了,只是UI略显粗糙,如果想做到真正雷霆战机那么酷炫带爆炸的效果那还需要很多素材和canvas的绘制。

canvas很强大很好玩,只要脑洞够大,这张画布上你想画啥就可以画啥~

老规矩,po上vue的完整代码供大家参考学习:

<template><div class="type-game"><canvas id="type" width="400" height="600"></canvas></div>
</template><script>
const _MAX_TARGET = 3; // 画面中一次最多出现的目标
const _TARGET_CONFIG = {// 靶子的固定参数speed: 1.3,radius: 10
};
const _DICTIONARY = ["apple", "orange", "blue", "green", "red", "current"];
export default {name: "TypeGame",data() {return {ctx: null,clientWidth: 0,clientHeight: 0,bulletArr: [], // 屏幕中的子弹targetArr: [], // 存放当前目标targetImg: null,planeImg: null,currentIndex: -1,wordsPool: [],score: 0,gameOver: false,colors: ["#FFFF00", "#FF6666"]};},mounted() {let _this = this;_this.wordsPool = _DICTIONARY.concat([]);let container = document.getElementById("type");_this.clientWidth = container.width;_this.clientHeight = container.height;_this.ctx = container.getContext("2d");_this.targetImg = new Image();_this.targetImg.src = require("@/assets/img/target.png");_this.planeImg = new Image();_this.planeImg.src = require("@/assets/img/plane.png");document.onkeydown = function(e) {let key = window.event.keyCode;if (key >= 65 && key <= 90) {_this.handleKeyPress(String.fromCharCode(key).toLowerCase());}};_this.targetImg.onload = function() {_this.generateTarget();(function animloop() {if (!_this.gameOver) {_this.drawAll();} else {_this.drawGameOver();}window.requestAnimationFrame(animloop);})();};},methods: {drawGameOver() {let _this = this;//保存上下文对象的状态_this.ctx.save();_this.ctx.font = "34px Arial";_this.ctx.strokeStyle = _this.colors[0];_this.ctx.lineWidth = 2;//光晕_this.ctx.shadowColor = "#FFFFE0";let txt = "游戏结束,得分:" + _this.score;let width = _this.ctx.measureText(txt).width;for (let i = 60; i > 3; i -= 2) {_this.ctx.shadowBlur = i;_this.ctx.strokeText(txt, _this.clientWidth / 2 - width / 2, 300);}_this.ctx.restore();_this.colors.reverse();},drawAll() {let _this = this;_this.ctx.clearRect(0, 0, _this.clientWidth, _this.clientHeight);_this.drawPlane(0);_this.drawBullet();_this.drawTarget();_this.drawScore();},drawPlane() {let _this = this;_this.ctx.save();_this.ctx.drawImage(_this.planeImg,_this.clientWidth / 2 - 20,_this.clientHeight - 20 - 40,40,40);_this.ctx.restore();},generateWord(number) {// 从池子里随机挑选一个词,不与已显示的词重复let arr = [];for (let i = 0; i < number; i++) {let random = Math.floor(Math.random() * this.wordsPool.length);arr.push(this.wordsPool[random]);this.wordsPool.splice(random, 1);}return arr;},generateTarget() {// 随机生成目标let _this = this;let length = _this.targetArr.length;if (length < _MAX_TARGET) {let txtArr = _this.generateWord(_MAX_TARGET - length);for (let i = 0; i < _MAX_TARGET - length; i++) {_this.targetArr.push({x: _this.getRandomInt(_TARGET_CONFIG.radius,_this.clientWidth - _TARGET_CONFIG.radius),y: _TARGET_CONFIG.radius * 2,txt: txtArr[i],typeIndex: -1,hitIndex: -1,dx: (_TARGET_CONFIG.speed * Math.random().toFixed(1)) / 2,dy: _TARGET_CONFIG.speed * Math.random().toFixed(1),rotate: 0});}}},getRandomInt(n, m) {return Math.floor(Math.random() * (m - n + 1)) + n;},drawText(txt, x, y, color) {let _this = this;_this.ctx.fillStyle = color;_this.ctx.fillText(txt, x, y);},drawScore() {// 分数this.drawText("分数:" + this.score, 10, this.clientHeight - 10, "#fff");},drawTarget() {// 逐帧画目标let _this = this;_this.targetArr.forEach((item, index) => {_this.ctx.save();_this.ctx.translate(item.x, item.y); //设置旋转的中心点_this.ctx.beginPath();_this.ctx.font = "14px Arial";if (index === _this.currentIndex ||item.typeIndex === item.txt.length - 1) {_this.drawText(item.txt.substring(0, item.typeIndex + 1),-item.txt.length * 3,_TARGET_CONFIG.radius * 2,"gray");let width = _this.ctx.measureText(item.txt.substring(0, item.typeIndex + 1)).width; // 获取已敲击文字宽度_this.drawText(item.txt.substring(item.typeIndex + 1, item.txt.length),-item.txt.length * 3 + width,_TARGET_CONFIG.radius * 2,"red");} else {_this.drawText(item.txt,-item.txt.length * 3,_TARGET_CONFIG.radius * 2,"yellow");}_this.ctx.closePath();_this.ctx.rotate((item.rotate * Math.PI) / 180);_this.ctx.drawImage(_this.targetImg,-1 * _TARGET_CONFIG.radius,-1 * _TARGET_CONFIG.radius,_TARGET_CONFIG.radius * 2,_TARGET_CONFIG.radius * 2);_this.ctx.restore();item.y += item.dy;item.x += item.dx;if (item.x < 0 || item.x > _this.clientWidth) {item.dx *= -1;}if (item.y > _this.clientHeight - _TARGET_CONFIG.radius * 2) {// 碰到底部了_this.gameOver = true;}// 旋转item.rotate++;});},handleKeyPress(key) {// 键盘按下,判断当前目标let _this = this;if (_this.currentIndex === -1) {// 当前没有在射击的目标let index = _this.targetArr.findIndex(item => {return item.txt.indexOf(key) === 0;});if (index !== -1) {_this.currentIndex = index;_this.targetArr[index].typeIndex = 0;_this.createBullet(index);}} else {// 已有目标正在被射击if (key ===_this.targetArr[_this.currentIndex].txt.split("")[_this.targetArr[_this.currentIndex].typeIndex + 1]) {// 获取到目标对象_this.targetArr[_this.currentIndex].typeIndex++;_this.createBullet(_this.currentIndex);if (_this.targetArr[_this.currentIndex].typeIndex ===_this.targetArr[_this.currentIndex].txt.length - 1) {// 这个目标已经别射击完毕_this.currentIndex = -1;}}}},// 发射一个子弹createBullet(index) {let _this = this;this.bulletArr.push({dx: 1,dy: 4,x: _this.clientWidth / 2,y: _this.clientHeight - 60,targetIndex: index});},firedTarget(item) {// 判断是否击中目标let _this = this;if (item.x > _this.targetArr[item.targetIndex].x - _TARGET_CONFIG.radius &&item.x < _this.targetArr[item.targetIndex].x + _TARGET_CONFIG.radius &&item.y > _this.targetArr[item.targetIndex].y - _TARGET_CONFIG.radius &&item.y < _this.targetArr[item.targetIndex].y + _TARGET_CONFIG.radius) {// 子弹击中了目标let arrIndex = item.targetIndex;_this.targetArr[arrIndex].hitIndex++;if (_this.targetArr[arrIndex].txt.length - 1 ===_this.targetArr[arrIndex].hitIndex) {// 所有子弹全部击中了目标let word = _this.targetArr[arrIndex].txt;_this.targetArr[arrIndex] = {// 生成新的目标x: _this.getRandomInt(_TARGET_CONFIG.radius,_this.clientWidth - _TARGET_CONFIG.radius),y: _TARGET_CONFIG.radius * 2,txt: _this.generateWord(1)[0],typeIndex: -1,hitIndex: -1,dx: (_TARGET_CONFIG.speed * Math.random().toFixed(1)) / 2,dy: _TARGET_CONFIG.speed * Math.random().toFixed(1),rotate: 0};_this.wordsPool.push(word); // 被击中的目标词重回池子里_this.score++;}return false;} else {return true;}},drawBullet() {// 逐帧画子弹let _this = this;// 判断子弹是否已经击中目标if (_this.bulletArr.length === 0) {return;}_this.bulletArr = _this.bulletArr.filter(_this.firedTarget);_this.bulletArr.forEach(item => {let targetX = _this.targetArr[item.targetIndex].x;let targetY = _this.targetArr[item.targetIndex].y;let k =(_this.clientHeight - 60 - targetY) /(_this.clientWidth / 2 - targetX); // 飞机头和目标的斜率let b = targetY - k * targetX; // 常量bitem.y = item.y - 4; // y轴偏移一个单位item.x = (item.y - b) / k;for (let i = 0; i < 15; i++) {// 画出拖尾效果_this.ctx.beginPath();_this.ctx.arc((item.y + i * 1.8 - b) / k,item.y + i * 1.8,4 - 0.2 * i,0,2 * Math.PI);_this.ctx.fillStyle = `rgba(193,255,255,${1 - 0.08 * i})`;_this.ctx.fill();_this.ctx.closePath();}});}}
};
</script><!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
.type-game {#type {background: #2a4546;}
}
</style>

纪念一下,以后估计就没了hhhhhhhh

VUE+Canvas实现雷霆战机打字类小游戏相关推荐

  1. VUE+Canvas 实现桌面弹球消砖块小游戏

    大家都玩过弹球消砖块游戏,左右键控制最底端的一个小木板平移,接住掉落的小球,将球弹起后消除画面上方的一堆砖块. 那么用VUE+Canvas如何来实现呢?实现思路很简单,首先来拆分一下要画在画布上的内容 ...

  2. HTML5 Canvas 射击类小游戏 平滑的移动 思路

    这篇博客主要讲了如何处理HTML5 Canvas 游戏中的角色移动问题. 笔者这几天做了一个 HTML5 Canvas 的射击类小游戏,嗯,名字叫做<DroppingBalls>,大概就是 ...

  3. HTML5/Canvas太空射击类小游戏源码

    下载地址 JavaScript HTML5/Canvas太空射击类小游戏源码,非常值得学习的一款js射击小游戏代码,美术有点老旧,但是代码是完全开源的,有参考价值. dd:

  4. python双手打字_Python打字练习小游戏源代码

    Python打字练习小游戏源代码 Python代码狂人 Python代码大全 Python打字练习小游戏源程序,随机产生一串字符,可对打字练习的正确率和时间进行统计,运行截图如下: from tkin ...

  5. 计算机打字训练教学教案,打字练习小游戏教案.doc

    XXXX大学 C#课程设计报告 打字练习小游戏 院(系)别 专 业 班 级 学 号 姓 名 指导教师 二○XX年XX月 摘 要 随着社会经济的发展,计算机在生活占据着越来越重要的地位,如何高效快速的使 ...

  6. java文字类小游戏2.0版本

    java文字类小游戏 用javaFx面板显示文字类小游戏,目前正已完成基本打斗和打怪爆出武器的开发,后续会不断更新示例图如下: 运行这个类开始代码我已上传至码云,有需要的小伙伴自行拉取代码,git项目 ...

  7. C语言编一个金山打字通小游戏,js实现金山打字通小游戏

    本文实例为大家分享了js实现金山打字通小游戏的具体代码,供大家参考,具体内容如下 字母匀速随机下落,键盘按下对应字母按键,字母消失重新生成新字母,新字母可帮助回调一部分初始高度 效果 1.页面内容 列 ...

  8. 【Unity2d】带你制作一款类似于金山打字的小游戏

    博主大概08年开始接触电脑游戏,当时玩的是我哥的电脑,那时候家里没网,只可以玩电脑上自带的单机游戏,比如扫雷.蜘蛛纸牌等等,当然还有红色警戒.冰封王座.星际争霸.帝国崛起等等,这些大概是我哥当时在大学 ...

  9. 人与计算机猜数游戏,猜数字(古老的的密码破译类益智类小游戏)_百度百科...

    猜数字 (古老的的密码破译类益智类小游戏) 语音 编辑 锁定 讨论 上传视频 猜数字(又称 Bulls and Cows )是一种古老的的密码破译类益智类小游戏,起源于20世纪中期,一般由两个人或多人 ...

  10. 3D跑酷类小游戏开发实战

    今天,带领大家从零开始开发一款完整的3D跑酷类小游戏,主要面向有一定Egret2D开发经验的小伙伴,手把手教你学习EgretPro开发,快速开启您的EgretPro开发之旅. 下面是整个游戏的制作过程 ...

最新文章

  1. Cf Round #403 B. The Meeting Place Cannot Be Changed(二分答案)
  2. nginx A/B 灰色发布
  3. 关于js浅拷贝与深拷贝的理解
  4. Linux环境下Android开发环境的搭建
  5. 网站搭建从零开始(六) WordPress的基本配置
  6. linux脚本expect分区,linux – 从不同位置执行Expect脚本
  7. bochs的安装和配置
  8. 360导航源码php,51zxw 仿360网址导航源码
  9. 分析微商分销系统的缺陷
  10. 【图像处理】基于灰度矩的亚像素边缘检测方法理论及MATLAB实现
  11. 如何用PHP写webshell,phpAdmin写webshell的方法
  12. Vue中使用v-for生成dom删除元素错乱的问题
  13. STM32(3)——外部中断的使用
  14. Sitecore学习总结(1)
  15. 免费获取全球夜间NPP VIIRS灯光数据!内附下载链接!
  16. mysql 共享nfs,服务器之间搭建NFS共享文件 - 老牛博客
  17. 第九篇《颅骨穿孔——后篇》
  18. 融云韩迎:中国技术型公司出海才刚开始,未来有很大发展空间
  19. linux下双击执行.sh脚本文件
  20. 轻快pdf阅读器app如何删除pdf文档页面

热门文章

  1. 2022年电脑杀毒软件PK
  2. matlab贝塔分布,怎么拟合贝塔分布函数
  3. foo bar foobar?
  4. 【产品】 产品设计:工业设计之外观设计详解(形态设计和CMF设计)
  5. excel表格如何不需鼠标往下拖动而自动往下填
  6. win7系统激活工具怎么用?
  7. python建立ARIMA模型进行时间序列分析(氵论文)
  8. 如何提高学习效率,三大法则,五大步骤
  9. php apache 假死,解决apache兼容性及慢或假死问题
  10. 又一股份制银行,菊风「视频能力平台」承包了