From b19d5d959712ab6f6772352a5d0ed1d27f403e7d Mon Sep 17 00:00:00 2001 From: aarthificial Date: Sat, 9 Dec 2023 23:38:36 +0100 Subject: [PATCH] fix: fix gameplay settings --- 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); } } }