diff options
author | aap <aap@papnet.eu> | 2019-06-12 21:17:02 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-12 21:17:02 +0200 |
commit | 9703ef9b591430b86c272e0f042b1f50b6cb437c (patch) | |
tree | 4e27511538090c8872e80c68cc7f70186eeb01f4 /src/animation/FrameUpdate.cpp | |
parent | implemented CCutsceneHead and dependencies (diff) | |
download | re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar.gz re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar.bz2 re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar.lz re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar.xz re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.tar.zst re3-9703ef9b591430b86c272e0f042b1f50b6cb437c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/animation/FrameUpdate.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/animation/FrameUpdate.cpp b/src/animation/FrameUpdate.cpp index 1533897e..62300527 100644 --- a/src/animation/FrameUpdate.cpp +++ b/src/animation/FrameUpdate.cpp @@ -23,7 +23,7 @@ FrameUpdateCallBack(AnimBlendFrameData *frame, void *arg) AnimBlendFrameUpdateData *updateData = (AnimBlendFrameUpdateData*)arg; if(frame->flag & AnimBlendFrameData::VELOCITY_EXTRACTION && - gpAnimBlendClump->pedPosition){ + gpAnimBlendClump->velocity){ if(frame->flag & AnimBlendFrameData::VELOCITY_EXTRACTION_3D) FrameUpdateCallBackWith3dVelocityExtraction(frame, arg); else @@ -132,11 +132,11 @@ FrameUpdateCallBackWithVelocityExtraction(AnimBlendFrameData *frame, void *arg) } if((frame->flag & AnimBlendFrameData::IGNORE_TRANSLATION) == 0){ - gpAnimBlendClump->pedPosition->x = transx - curx; - gpAnimBlendClump->pedPosition->y = transy - cury; + gpAnimBlendClump->velocity->x = transx - curx; + gpAnimBlendClump->velocity->y = transy - cury; if(looped){ - gpAnimBlendClump->pedPosition->x += endx; - gpAnimBlendClump->pedPosition->y += endy; + gpAnimBlendClump->velocity->x += endx; + gpAnimBlendClump->velocity->y += endy; } mat->pos.x = pos.x - transx; mat->pos.y = pos.y - transy; @@ -211,9 +211,9 @@ FrameUpdateCallBackWith3dVelocityExtraction(AnimBlendFrameData *frame, void *arg } if((frame->flag & AnimBlendFrameData::IGNORE_TRANSLATION) == 0){ - *gpAnimBlendClump->pedPosition = trans - cur; + *gpAnimBlendClump->velocity = trans - cur; if(looped) - *gpAnimBlendClump->pedPosition += end; + *gpAnimBlendClump->velocity += end; mat->pos.x = (pos - trans).x + frame->resetPos.x; mat->pos.y = (pos - trans).y + frame->resetPos.y; mat->pos.z = (pos - trans).z + frame->resetPos.z; |