Browse Source

Fix for missing scene-container

pull/33/head
Matthew Raymer 1 year ago
parent
commit
80a1185faa
  1. 16
      src/views/StatisticsView.vue

16
src/views/StatisticsView.vue

@ -80,6 +80,7 @@
</div> </div>
</div> </div>
<button class="float-right" @click="captureGraphics()">Screenshot</button> <button class="float-right" @click="captureGraphics()">Screenshot</button>
<div id="scene-container" class="h-screen"></div>
<AlertMessage <AlertMessage
:alertTitle="alertTitle" :alertTitle="alertTitle"
:alertMessage="alertMessage" :alertMessage="alertMessage"
@ -98,17 +99,22 @@ interface WorldProperties {
endTime?: string; endTime?: string;
} }
@Component({ components: { AlertMessage } }) @Component({ components: { AlertMessage, World } })
export default class StatisticsView extends Vue { export default class StatisticsView extends Vue {
world: World; world: World;
worldProperties: WorldProperties = {}; worldProperties: WorldProperties = {};
// 'mounted' hook runs after initial render // 'mounted' hook runs after initial render
mounted() { mounted() {
const container = document.querySelector("#scene-container"); try {
const newWorld = new World(container, this); const container = document.querySelector("#scene-container");
newWorld.start(); console.log(container);
this.world = newWorld; const newWorld = new World(container, this);
newWorld.start();
this.world = newWorld;
} catch (err) {
console.log(err);
}
} }
public captureGraphics() { public captureGraphics() {

Loading…
Cancel
Save