From bb305b6c9269141c4fc5185bdeab991f4b4f9b4a Mon Sep 17 00:00:00 2001 From: Alug Date: Sun, 31 Mar 2024 23:03:10 +0200 Subject: [PATCH] Interpolate Dynamic Slopes --- src/p_slopes.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/p_slopes.c b/src/p_slopes.c index 49405a3c..5a125662 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -22,7 +22,7 @@ #include "r_main.h" #include "p_maputl.h" #include "w_wad.h" - +#include "r_fps.h" pslope_t *slopelist = NULL; UINT16 slopecount = 0; @@ -209,6 +209,9 @@ static inline void P_AddDynSlopeThinker (pslope_t* slope, dynplanetype_t type, l th->type = type; P_QueueSlopeThinker(&th->thinker); + + // interpolation + R_CreateInterpolator_DynSlope(&th->thinker, slope); }