简单游戏.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();
评论0
最新资源