我正在关注http://html5quintus.com/上的 quintus 教程,并做一些代码,这是我的代码:
var Q = Quintus().include("Sprites").setup(
{
width:800,
height:600
}
);
Q.Sprite.extend("Player",{
init:function(p){
this._super(p,{ sheet:"superman" });
this.add('2d');
}
});
Q.load("sprites.json,sprites.png",function()
{
var man=new Q.Player();
Q.gameLoop(function(dt){
man.render(Q.ctx);
});
});
在浏览器中我得到了这个错误:Cannot call method 'draw' of undefined
这很奇怪,因为错误发生在quintus-all.js
在线3520
。有人可以帮助我吗?谢谢