0

我正在关注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。有人可以帮助我吗?谢谢

4

1 回答 1

2

我想你只是忘了编译你的精灵表:

Q.load("sprites.json,sprites.png",function()
{
    // Add compileSheets
    Q.compileSheets("sprites.png","sprites.json");

    var man=new Q.Player();
    Q.gameLoop(function(dt){
        man.render(Q.ctx);
    });
});
于 2013-08-05T11:07:48.610 回答