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, } },