Skip to content

Commit

Permalink
Merge pull request #1 from zahndy/main
Browse files Browse the repository at this point in the history
Update LaserRecolorJank.cs
  • Loading branch information
Ap6661 authored Apr 27, 2023
2 parents d000f01 + 7ab0c94 commit eec1833
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions LaserRecolorJank/LaserRecolorJank.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public class Patch : NeosMod
private static ModConfigurationKey<color> RIGHT_FAR = new ModConfigurationKey<color>("right_far", "Right Far Color", () => new color(.25F, 1F, 1F, 1F));

[AutoRegisterConfigKey]
private static ModConfigurationKey<string> RIGHT_NEAR_VAR = new ModConfigurationKey<string>("right_near_var", "Right Near Color Dynamic Variable", () => null);
private static ModConfigurationKey<string> RIGHT_NEAR_VAR = new ModConfigurationKey<string>("right_near_var", "Right Near Color Dynamic Variable", () => "");
[AutoRegisterConfigKey]
private static ModConfigurationKey<string> RIGHT_FAR_VAR = new ModConfigurationKey<string>("right_far_var", "Right Far Color Dynamic Variable", () => null);
private static ModConfigurationKey<string> RIGHT_FAR_VAR = new ModConfigurationKey<string>("right_far_var", "Right Far Color Dynamic Variable", () => "");

[AutoRegisterConfigKey]
private static ModConfigurationKey<float> RIGHT_CURSOR_SCALE = new ModConfigurationKey<float>("right_cursor_scale", "The scale of the right cursor", () => 1F);
Expand Down Expand Up @@ -93,9 +93,9 @@ public class Patch : NeosMod
private static ModConfigurationKey<color> LEFT_FAR = new ModConfigurationKey<color>("left_far", "Left Far Color", () => new color(.25F, 1F, 1F, 1F));

[AutoRegisterConfigKey]
private static ModConfigurationKey<string> LEFT_NEAR_VAR = new ModConfigurationKey<string>("left_near_var", "Left Near Color Dynamic Variable", () => null);
private static ModConfigurationKey<string> LEFT_NEAR_VAR = new ModConfigurationKey<string>("left_near_var", "Left Near Color Dynamic Variable", () => "");
[AutoRegisterConfigKey]
private static ModConfigurationKey<string> LEFT_FAR_VAR = new ModConfigurationKey<string>("left_far_var", "Left Far Color Dynamic Variable", () => null);
private static ModConfigurationKey<string> LEFT_FAR_VAR = new ModConfigurationKey<string>("left_far_var", "Left Far Color Dynamic Variable", () => "");

[AutoRegisterConfigKey]
private static ModConfigurationKey<float> LEFT_CURSOR_SCALE = new ModConfigurationKey<float>("left_cursor_scale", "The scale of the left cursor", () => 1F);
Expand Down

0 comments on commit eec1833

Please sign in to comment.