mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-22 06:52:03 +00:00
Colliders: change "touch, bump" to AT and AC (elems) (#1637)
* toucherFlags, bumperFlags -> atElemFlags, acElemFlags * TOUCH_ -> ATELEM_ * BUMP_ -> ACELEM_ * ColliderElementTouch,Bump -> ColliderElementDamageInfoAT,AC * toucher,bumper -> atDmgInfo,acDmgInfo * Update docs and zcolchk funcs names * run formatter * remove the last mentions of "bump" for colliders * Update renamed functions in disasm
This commit is contained in:
parent
bf37ad1368
commit
68a86d2d00
253 changed files with 1509 additions and 1509 deletions
|
@ -78,8 +78,8 @@ static ColliderCylinderInit sCylinderInit = {
|
|||
ELEMTYPE_UNK0,
|
||||
{ 0x00000000, 0x00, 0x00 },
|
||||
{ 0xFFCFFFFF, 0x00, 0x00 },
|
||||
TOUCH_NONE,
|
||||
BUMP_ON | BUMP_HOOKABLE,
|
||||
ATELEM_NONE,
|
||||
ACELEM_ON | ACELEM_HOOKABLE,
|
||||
OCELEM_ON,
|
||||
},
|
||||
{ 25, 80, 0, { 0, 0, 0 } },
|
||||
|
@ -91,8 +91,8 @@ static ColliderTrisElementInit sTrisElementsInit[2] = {
|
|||
ELEMTYPE_UNK2,
|
||||
{ 0x00000000, 0x00, 0x00 },
|
||||
{ 0xFFC3FFFF, 0x00, 0x00 },
|
||||
TOUCH_NONE,
|
||||
BUMP_ON | BUMP_NO_AT_INFO,
|
||||
ATELEM_NONE,
|
||||
ACELEM_ON | ACELEM_NO_AT_INFO,
|
||||
OCELEM_NONE,
|
||||
},
|
||||
{ { { -10.0f, 14.0f, 2.0f }, { -10.0f, -6.0f, 2.0f }, { 9.0f, 14.0f, 2.0f } } },
|
||||
|
@ -102,8 +102,8 @@ static ColliderTrisElementInit sTrisElementsInit[2] = {
|
|||
ELEMTYPE_UNK2,
|
||||
{ 0x00000000, 0x00, 0x00 },
|
||||
{ 0xFFC3FFFF, 0x00, 0x00 },
|
||||
TOUCH_NONE,
|
||||
BUMP_ON | BUMP_NO_AT_INFO,
|
||||
ATELEM_NONE,
|
||||
ACELEM_ON | ACELEM_NO_AT_INFO,
|
||||
OCELEM_NONE,
|
||||
},
|
||||
{ { { -10.0f, -6.0f, 2.0f }, { 9.0f, -6.0f, 2.0f }, { 9.0f, 14.0f, 2.0f } } },
|
||||
|
@ -136,8 +136,8 @@ static ColliderQuadInit sQuadInit = {
|
|||
ELEMTYPE_UNK0,
|
||||
{ 0x20000000, 0x00, 0x40 },
|
||||
{ 0x00000000, 0x00, 0x00 },
|
||||
TOUCH_ON | TOUCH_SFX_NORMAL | TOUCH_UNK7,
|
||||
BUMP_NONE,
|
||||
ATELEM_ON | ATELEM_SFX_NORMAL | ATELEM_UNK7,
|
||||
ACELEM_NONE,
|
||||
OCELEM_NONE,
|
||||
},
|
||||
{ { { 0.0f, 0.0f, 0.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 0.0f, 0.0f } } },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue