We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd6e3c commit a8ae068Copy full SHA for a8ae068
articles/tutorials/building_2d_games/21_customizing_gum_ui/snippets/animatedbutton.cs
@@ -43,7 +43,7 @@ public AnimatedButton(TextureAtlas atlas)
43
// Create the text element that will display the button's label
44
TextRuntime textInstance = new TextRuntime();
45
// Name is required so it hooks in to the base Button.Text property
46
- textInstance.Name = nameof(textInstance);
+ textInstance.Name = "TextInstance";
47
textInstance.Text = "START";
48
textInstance.Blue = 130;
49
textInstance.Green = 86;
0 commit comments