Skip to content

Commit 70effc4

Browse files
committed
Adding comment
1 parent fe62f57 commit 70effc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Assets/Scripts/Utils/NetworkSimulatorUIMediator.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,9 @@ void ToggleVisibility()
147147

148148
void InitializeUI()
149149
{
150-
// initialize connection presets dropdown
150+
// Initialize connection presets dropdown
151151
var optionData = new List<TMP_Dropdown.OptionData>();
152+
// Adding all available presets
152153
foreach (var networkSimulatorPreset in NetworkSimulatorPresets.Values)
153154
{
154155
m_SimulatorPresets[networkSimulatorPreset.Name] = networkSimulatorPreset;
@@ -157,7 +158,7 @@ void InitializeUI()
157158
m_PresetsDropdown.AddOptions(optionData);
158159
m_PresetsDropdown.onValueChanged.AddListener(OnPresetChanged);
159160

160-
// initialize scenario dropdown
161+
// Initialize scenario dropdown
161162
optionData = new List<TMP_Dropdown.OptionData>();
162163

163164
// Adding empty scenario

0 commit comments

Comments
 (0)