Skip to content

Commit

Permalink
Fixed May's dolphin hurtbox rotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Dec 20, 2023
1 parent 95301e7 commit 1282273
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,3 +458,4 @@ Dependencies are better described in each project's README.md. Short version is,
- 2023 November 29: Fixed a crash when quitting a match/training session while the mod is running.
- 2023 December 12: Made some fixes in code related to thread safety.
- 2023 December 13: Tried to fix an issue with hotkeys not working during frame freeze.
- 2023 December 20: Fixed May's dolphin hurtbox rotation.
3 changes: 3 additions & 0 deletions ggxrd_hitbox_overlay/collectHitboxes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ void collectHitboxes(const Entity& ent,
callParams.hitboxData = hurtboxData;
callParams.hitboxCount = hurtboxCount;
callParams.params = params;
callParams.params.angle = *(int*)(ent + 0x258);
callParams.params.hitboxOffsetX = *(int*)(ent + 0x27C);
callParams.params.hitboxOffsetY = *(int*)(ent + 0x280);
DWORD alpha = 64;
if (state.strikeInvuln) {
alpha = 0;
Expand Down

0 comments on commit 1282273

Please sign in to comment.