diff --git a/examples/ImGuiAppDemo/ImGuiAppDemo.cs b/examples/ImGuiAppDemo/ImGuiAppDemo.cs index 38ce283..b76ec84 100644 --- a/examples/ImGuiAppDemo/ImGuiAppDemo.cs +++ b/examples/ImGuiAppDemo/ImGuiAppDemo.cs @@ -903,7 +903,7 @@ private static void UpdateAnimations(float dt) animationTime += dt; // Bouncing animation - bounceOffset = MathF.Abs(MathF.Sin(animationTime * 3)) * 50; + bounceOffset = (MathF.Abs(MathF.Sin(animationTime * 3)) * 50) - 25; // Pulse animation pulseScale = 0.8f + (0.4f * MathF.Sin(animationTime * 4));