From 922dc178d66811d476af2df257db054a2171f405 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 26 Nov 2020 18:19:21 +0100 Subject: [PATCH] - SW: interpolate texture panning. --- source/sw/src/sprite.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/sw/src/sprite.cpp b/source/sw/src/sprite.cpp index 5b39b6456..86f343262 100644 --- a/source/sw/src/sprite.cpp +++ b/source/sw/src/sprite.cpp @@ -2114,6 +2114,8 @@ SpriteSetup(void) else sp->xvel = sp->lotag; + StartInterpolation(sp->sectnum, Interp_Sect_FloorPanX); + StartInterpolation(sp->sectnum, Interp_Sect_FloorPanY); change_sprite_stat(SpriteNum, STAT_FLOOR_PAN); break; } @@ -2125,6 +2127,8 @@ SpriteSetup(void) sp->xvel = 0; else sp->xvel = sp->lotag; + StartInterpolation(sp->sectnum, Interp_Sect_CeilingPanX); + StartInterpolation(sp->sectnum, Interp_Sect_CeilingPanY); change_sprite_stat(SpriteNum, STAT_CEILING_PAN); break; } @@ -2155,6 +2159,8 @@ SpriteSetup(void) sp->ang = SP_TAG6(sp); // attach to the sector that contains the wall changespritesect(SpriteNum, hitinfo.sect); + StartInterpolation(hitinfo.wall, Interp_Wall_PanX); + StartInterpolation(hitinfo.wall, Interp_Wall_PanY); change_sprite_stat(SpriteNum, STAT_WALL_PAN); break; }