[]关于Matter的初始化问题

var engine = Matter.Engine.create({
enableSleeping: true
});
Matter.Engine.run(engine);

var render = LayaRender.create(
{
engine: engine,
width: GAME_CONFIG.WIDTH,
height: GAME_CONFIG.HEIGHT,
options:
{
wireframes: false
}
});
LayaRender.run(render);

代码是官方的。
以下这段是源码
function createContainer(render)
{
var con = render.container;

spriteCon = new Laya.Sprite();
graphicsCon = new Laya.Sprite();

render.spriteContainer = spriteCon;
render.graphicsContainer = graphicsCon;

con.addChild(spriteCon);
con.addChild(graphicsCon);

graphics = graphicsCon.graphics;
}
现在con这个是undefined的。请问这个在哪来赋值哦。看了半天没看懂
已邀请:

liu282713097

赞同来自:

var con = render.container; 这句会报错哦,谁来看看哦!都是官方例子的代码!

liu282713097

赞同来自:

我看错了。真是坑爹的官方Api

要回复问题请先

商务合作
商务合作