12-02-2020, 04:16 PM
(12-02-2020, 05:33 AM)Dragon5 Wrote: I suppose the next thing I want to look for is how to adjust animations, specifically animation speeds since Drew's jump kick
You'll find frames' data in SPT files. Drew's SPT file has id=229. Open that file and search for
"name": "JUMP_ATTACK"
. You should find the following:Notice that
frameIndex
is 146, that's the frame where JUMP_ATTACK
begins. Now you can search for "146"
and you'll find that frame. All subsequent frames with "name": "jump_attack"
belong to that motion. Every frame has a duration
attribute, you can increase it to slow down the motion. Good luck!