From 0ffe2dadd95ad2f81ed64d5e85c7d8c59f349009 Mon Sep 17 00:00:00 2001 From: Jacob <64662184+aarthificial@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:00:21 +0100 Subject: [PATCH] fix: fix gameplay settings (#98) --- Assets/Settings/Bundles/GameplaySettingsBundle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Settings/Bundles/GameplaySettingsBundle.cs b/Assets/Settings/Bundles/GameplaySettingsBundle.cs index 0ad89c4..e3165b5 100644 --- a/Assets/Settings/Bundles/GameplaySettingsBundle.cs +++ b/Assets/Settings/Bundles/GameplaySettingsBundle.cs @@ -10,8 +10,8 @@ public class GameplaySettingsBundle : ScriptableObject { private void OnEnable() { CameraShake = new SettingProperty("cameraShake", 1); CameraWeight = new SettingProperty("cameraWeight", 60); - CameraWeight = new SettingProperty("autoDialogue", 1); - CameraWeight = new SettingProperty("skipDialogue", 0); + AutoDialogue = new SettingProperty("autoDialogue", 0); + SkipDialogue = new SettingProperty("skipDialogue", 0); } } }