From d9300b73ad7c99bc2e3150b909a5d9bb6fb45681 Mon Sep 17 00:00:00 2001 From: Victor Date: Sun, 3 Nov 2024 05:57:51 -0700 Subject: [PATCH] Upped version number Added roll over test --- Gum/Properties/AssemblyInfo.cs | 4 ++-- .../Screens/FrameworkElementExampleScreen.cs | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) 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++;