simplegame:用于 javascript 和 canvas 的简单游戏引擎

时间:2024-07-31 17:35:52
【文件属性】:

文件名称:simplegame:用于 javascript 和 canvas 的简单游戏引擎

文件大小:40KB

文件格式:ZIP

更新时间:2024-07-31 17:35:52

JavaScript

简单游戏.js 用 javascript 编写的(非常)简单的游戏引擎。 我在#BostonCodeCamp22 上做了一个关于这个游戏引擎的演讲。 您可以查看 使用简单的游戏,真正简单的案例。 var game = new Game(); // add a simple box game.addObject({ color: 'green', pos: { x: 100, y: 100 }, height: 100, width: 100, draw: function(canvas, ctx) { ctx.beginPath(); ctx.fillStyle = this.color; ctx.rect(this.pos.x, this.pos.y, this.width, this.height); ctx.fill();


【文件预览】:
simplegame-master
----.gitignore(535B)
----src()
--------simplegame.js(8KB)
----LICENSE(1KB)
----examples()
--------jumper()
----README.md(750B)

网友评论