make left-attack frames smoother, just as right-attack frames were made smoother in previous commit

This commit is contained in:
2025-03-21 10:37:19 +00:00
parent a0aac81b6c
commit f784244e81
2 changed files with 119 additions and 35 deletions

View File

@@ -501,7 +501,7 @@ struct
val boxes =
case facing of
FACING_RIGHT => Vector.sub (Whip.rightFrames, frame)
| FACING_LEFT => Vector.sub (Whip.leftFrames, frame div 2)
| FACING_LEFT => Vector.sub (Whip.leftFrames, frame)
in
helpGetWhipVec
(x, y, wratio, 0.0, yOffset, 0, boxes, width, height, [])
@@ -517,7 +517,7 @@ struct
val boxes =
case facing of
FACING_RIGHT => Vector.sub (Whip.rightFrames, frame)
| FACING_LEFT => Vector.sub (Whip.leftFrames, frame div 2)
| FACING_LEFT => Vector.sub (Whip.leftFrames, frame)
in
helpGetWhipVec
(x, y, hratio, xOffset, 0.0, 0, boxes, width, height, [])