Skip to content

Commit

Permalink
fix: fix gameplay settings (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarthificial authored Dec 9, 2023
1 parent 614a52d commit 0ffe2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Settings/Bundles/GameplaySettingsBundle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}

0 comments on commit 0ffe2da

Please sign in to comment.