腾讯的 2D 游戏引擎:AlloyGameEngine
AlloyGameEngine 让游戏制作变得超级容易,超快的 2d 渲染引擎,支持 webgl 和 canvas 渲染。
一分钟快速入门
要实现下面的效果:
 
 
可以使用下面的代码:
var bmp, stage = new Stage("#ourCanvas");  bmp = new Bitmap("img/atLogo.png");  //(0.5,0.5)==〉The center is the point of rotation  bmp.originX = 0.5;  bmp.originY = 0.5;  //bind click event, the event monitor can be accurate to pixel  bmp.onClick(function () {      //apply a random filter to the bmp      bmp.filter=[Math.random(), Math.random(), Math.random(), 1];  });  //add object to stage  stage.add(bmp);  var step = 0.01;  //loop  stage.onTick(function () {      bmp.rotation += 0.5;      if (bmp.scaleX > 1.5 || bmp.scaleX < 0.5) {          step *= -1;      }      bmp.scaleX += step;      bmp.scaleY += step;  }); 本文由用户 jopen  自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
                 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
                 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
                
                