From 043e55d42749e8acae4bd2d310a8f91ce1bd8bc1 Mon Sep 17 00:00:00 2001 From: cha0s Date: Tue, 23 Apr 2019 16:59:33 -0500 Subject: [PATCH] feat: render tickers --- client/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/app.js b/client/app.js index bd76241..2da7d7f 100644 --- a/client/app.js +++ b/client/app.js @@ -494,7 +494,8 @@ export class App extends decorate(class {}) { const elapsed = (now - lastTime) / 1000; lastTime = now; this.calculateDarkness(); - this.stage.render(); + this.roomView.renderTick(elapsed); + this.stage.renderTick(elapsed); // Sample. this.rps.sample(elapsed); });