From 335b3d1ed5edf1325bbbed67984f6d0be2e92222 Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 30 Dec 2024 14:01:12 +0100 Subject: [PATCH] add todo to re-apply easings behavior change --- Dalamud/Interface/Animation/Easing.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Interface/Animation/Easing.cs b/Dalamud/Interface/Animation/Easing.cs index edab25149..473e3d5e1 100644 --- a/Dalamud/Interface/Animation/Easing.cs +++ b/Dalamud/Interface/Animation/Easing.cs @@ -1,11 +1,14 @@ using System.Diagnostics; using System.Numerics; +using Dalamud.Utility; + namespace Dalamud.Interface.Animation; /// /// Base class facilitating the implementation of easing functions. /// +[Api11ToDo("Re-apply https://github.com/goatcorp/Dalamud/commit/1aada983931d9e45a250eebbc17c8b782d07701b")] public abstract class Easing { // TODO: Use game delta time here instead