我正在关注教程(http://www.yeahbutisitflash.com/?p=5226),当我尝试在谷歌浏览器上渲染时,开发工具控制台会显示:
Pixi.js v2.2.3 - webGL http://www.pixijs.com/ ♥♥♥ pixi.dev.is:224
参考pixi源代码中的第224行:
line# 224 console.log.apply(console, args);
这是我的代码(:
function init(){
stage = new PIXI.Stage(0x66FF99);
renderer = PIXI.autoDetectRenderer(
512,
384,
document.getElementById("game-canvas")
);
renderer.render(stage);
}