Skip to content
This repository was archived by the owner on Feb 11, 2024. It is now read-only.

Commit 5a6c100

Browse files
committed
Edited Example
1 parent e131f6f commit 5a6c100

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • COM3D2.ExampleCustomConfigMenu

COM3D2.ExampleCustomConfigMenu/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private void Awake()
6767
sect.AddSwitchControl("Switch7");
6868
sect.AddSwitchControl("Switch8");
6969
var slider = sect.AddSliderControl("Slider 1");
70-
var dropdown = sect.AddDropDownControl("Dropdown", new List<string>() { "test", "test2", "mustard", "iridocycltis", "snarf test", "communism", "faggotry"}, "test2");
70+
var dropdown = sect.AddDropDownControl("Dropdown", new List<string>() { "test", "test2", "mustard", "snarf test"}, "test2");
7171

7272
var sect2 = ConfigMenu.AddSection("My Section 2");
7373
sect2.AddSliderControl("Slider 5");
@@ -93,7 +93,7 @@ private void Awake()
9393
Main.logger.LogInfo($"DropDown's value changed to {dropdown.Value}");
9494
};
9595

96-
var field = sect2.AddInputFieldControl("Field 1", "Gey");
96+
var field = sect2.AddInputFieldControl("Field 1", "InputHere");
9797

9898
field.ValueChanged += (s, e) =>
9999
{

0 commit comments

Comments
 (0)