LeoOuyang24 / DarkestDungeonPokemonGame

balls
1 stars 1 forks source link

REFACTOR: How Lure handles animations #16

Closed LeoOuyang24 closed 4 months ago

LeoOuyang24 commented 5 months ago

Currently Lure has the animation baked into the doMoveSequence. This allows us to calculate the targets and do the animation, which is nice but it does mean that the moveAnimationSequence is untouched. Lure can either 1) be the exception, 2) use doAnimationSequence like other moves, or 3) other moves can have their animation sequences baked into the do move Sequence. Basically moves should (probably) be consistent; the moveAnimationSequence should always be the visual aspect of a move.

LeoOuyang24 commented 4 months ago

7/8/2024: As part of the fix to animations in general, this ticket can also be closed; I fixed Lure as part of that sweeping change