Adjusts easing in places where EASE_IN/OUT was applied without a curve. (#92976)

Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
This commit is contained in:
ArcaneMusic
2025-09-27 17:54:45 +02:00
committed by GitHub
co-authored by SmArtKar
parent 53a206e6c7
commit d87637e6ab
16 changed files with 29 additions and 21 deletions
+1 -1
View File
@@ -60,7 +60,7 @@
/obj/effect/temp_visual/curse_blast/Initialize(mapload)
. = ..()
animate(src, transform = matrix() * 0.2, time = 0, flags = ANIMATION_PARALLEL)
animate(transform = matrix() * 2, time = duration, easing = EASE_IN)
animate(transform = matrix() * 2, time = duration, easing = QUAD_EASING|EASE_IN)
animate(src, alpha = 255, time = 0, flags = ANIMATION_PARALLEL)
animate(alpha = 255, time = 0.2 SECONDS)