You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new renderer, the level needs to implement a getRenderList method to return all the things (entities, particles, whatever) that need rendering, in the order they should be rendered.
The example method has a trivial example implementation. The level's render method will be called, again, in the example level you'll see it passes the return value of this.getRenderList() to rendererer.render( ).
The renderer currently only supports sprite-based rendering (ctx.drawImage).So this task is blocked by another which is to implement the box/line fills currently used for walls, doors, etc.
The text was updated successfully, but these errors were encountered:
With the new renderer, the level needs to implement a getRenderList method to return all the things (entities, particles, whatever) that need rendering, in the order they should be rendered.
The example method has a trivial example implementation. The level's render method will be called, again, in the example level you'll see it passes the return value of this.getRenderList() to rendererer.render( ).
The renderer currently only supports sprite-based rendering (ctx.drawImage).So this task is blocked by another which is to implement the box/line fills currently used for walls, doors, etc.
The text was updated successfully, but these errors were encountered: