From 351b63da6ba2ce4fdc492d26df22933839607159 Mon Sep 17 00:00:00 2001 From: "nikolaus.feith" Date: Mon, 6 Mar 2023 13:38:43 +0100 Subject: [PATCH] manual finished --- .../src/components/MountainCarCanvas.vue | 22 ++++++++++--------- ActiveBOWeb/src/components/SubLayout.vue | 4 ++-- ActiveBOWeb/src/store/MountainCarStore.js | 10 ++++----- 3 files changed, 19 insertions(+), 17 deletions(-) diff --git a/ActiveBOWeb/src/components/MountainCarCanvas.vue b/ActiveBOWeb/src/components/MountainCarCanvas.vue index d5c1b75..6d01a42 100644 --- a/ActiveBOWeb/src/components/MountainCarCanvas.vue +++ b/ActiveBOWeb/src/components/MountainCarCanvas.vue @@ -1,5 +1,5 @@ diff --git a/ActiveBOWeb/src/components/SubLayout.vue b/ActiveBOWeb/src/components/SubLayout.vue index fa5415d..4106d22 100644 --- a/ActiveBOWeb/src/components/SubLayout.vue +++ b/ActiveBOWeb/src/components/SubLayout.vue @@ -23,8 +23,8 @@ - - + + diff --git a/ActiveBOWeb/src/store/MountainCarStore.js b/ActiveBOWeb/src/store/MountainCarStore.js index dd1e861..47b5b14 100644 --- a/ActiveBOWeb/src/store/MountainCarStore.js +++ b/ActiveBOWeb/src/store/MountainCarStore.js @@ -3,11 +3,11 @@ import { defineStore } from "pinia"; export const useMCStore = defineStore('Mountain Car Store', { state: () => { return { - red: Array(240000).fill(120), - green: Array(240000).fill(120), - blue: Array(240000).fill(120), - width: 600, - height: 400, + red: Array(153600).fill(120), + green: Array(153600).fill(120), + blue: Array(153600).fill(120), + width: 480, + height: 320, trigger: false, } },