X-Git-Url: https://git.r.bdr.sh/rbdr/sumo/blobdiff_plain/493ec31cb19b4211c703762d14a4e6232c4c2143..6768cd461ec1a8ea87c0f64e1b3c29e36b0b02ed:/lib/systems/render.js diff --git a/lib/systems/render.js b/lib/systems/render.js index a2e3020..83c740d 100644 --- a/lib/systems/render.js +++ b/lib/systems/render.js @@ -31,13 +31,13 @@ export default class RenderSystem extends System { /** * The pixi engine we will use to render * - * @property {external:PixiJs.Application} renderables + * @property {external:PixiJs.Application} application * @instance * @memberof RenderSystem */ - this._application = config.application; + this.application = config.application; - if (!this._application) { + if (!this.application) { throw new Error(internals.kNoPixiError); } } @@ -57,11 +57,11 @@ export default class RenderSystem extends System { this.renderables = engine.getNodes(RenderableNode); this.renderables.on('nodeAdded', (event) => { - this._application.stage.addChild(event.node.container.container); + this.application.stage.addChild(event.node.container.container); }); this.renderables.on('nodeRemoved', (event) => { - this._application.stage.removeChild(event.node.container.container); + this.application.stage.removeChild(event.node.container.container); }); } @@ -88,5 +88,8 @@ export default class RenderSystem extends System { * frame * @memberof RenderSystem */ - update(currentFrameDuration) {} + update(currentFrameDuration) { + + this.application.render(); + } };