From 8257d1f6ab47d7ec87554d703e5833bf69a749fd 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..61b9815 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", 1); + SkipDialogue = new SettingProperty("skipDialogue", 0); } } }