Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
private void InitializeGum()
{
// Initialize the Gum service. The second parameter specifies
// the version of the default visuals to use. V2 is the latest
// the version of the default visuals to use. V3 is the latest
// version.
GumService.Default.Initialize(this, DefaultVisualsVersion.V3);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ private void CreateOptionsPanel() {
musicLabel.Text = "Music";
musicLabel.X = 35;
musicLabel.Y = 35;
optionsPanel.AddChild(musicLabel);
_optionsPanel.AddChild(musicLabel);

var musicSlider = new Slider();
musicSlider.Anchor(Gum.Wireframe.Anchor.Top);
Expand All @@ -32,7 +32,7 @@ private void CreateOptionsPanel() {
sfxLabel.Text = "SFX";
sfxLabel.X = 20;
sfxLabel.Y = 80;
optionsPanel.AddChild(sfxLabel);
_optionsPanel.AddChild(sfxLabel);

var sfxSlider = new Slider();
sfxSlider.Anchor(Gum.Wireframe.Anchor.Top);
Expand Down
Loading