diff --git a/Gum/Properties/AssemblyInfo.cs b/Gum/Properties/AssemblyInfo.cs index 5cec13a7..f05e4bf5 100644 --- a/Gum/Properties/AssemblyInfo.cs +++ b/Gum/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2024.11.2")] -[assembly: AssemblyFileVersion("2024.11.2")] \ No newline at end of file +[assembly: AssemblyVersion("2024.11.3")] +[assembly: AssemblyFileVersion("2024.11.3")] \ No newline at end of file diff --git a/Samples/GumFormsSample/GumFormsSampleCommon/Screens/FrameworkElementExampleScreen.cs b/Samples/GumFormsSample/GumFormsSampleCommon/Screens/FrameworkElementExampleScreen.cs index fdcd26db..cc7931eb 100644 --- a/Samples/GumFormsSample/GumFormsSampleCommon/Screens/FrameworkElementExampleScreen.cs +++ b/Samples/GumFormsSample/GumFormsSampleCommon/Screens/FrameworkElementExampleScreen.cs @@ -41,6 +41,10 @@ private void CreateColumn1Ui(GraphicalUiElement root) button.Height = 50; button.Text = "Hello MonoGame!"; int clickCount = 0; + button.Visual.RollOn += (_, _) => + { + Debug.WriteLine($"Roll on at {DateTime.Now}"); + }; button.Click += (_, _) => { clickCount++;