mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-21 14:31:17 +00:00
Rename MtxF members to use the common convention (#923)
* Rename MtxF members like xy -> now_21 * Revert comments I didn't mean to commit * Rename c*/r* temps in `SkinMatrix_MtxFMtxFMult` * Rename MtxF members like now_21 -> yx
This commit is contained in:
parent
7728f75d2a
commit
430a172183
20 changed files with 683 additions and 683 deletions
|
@ -756,9 +756,9 @@ void EnFirefly_PostLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList
|
|||
if ((limbIndex == 15) || (limbIndex == 21)) {
|
||||
if (this->actionFunc != EnFirefly_Die) {
|
||||
Matrix_Get(&mtx);
|
||||
effPos.x = (Rand_ZeroOne() * 5.0f) + mtx.wx;
|
||||
effPos.y = (Rand_ZeroOne() * 5.0f) + mtx.wy;
|
||||
effPos.z = (Rand_ZeroOne() * 5.0f) + mtx.wz;
|
||||
effPos.x = (Rand_ZeroOne() * 5.0f) + mtx.xw;
|
||||
effPos.y = (Rand_ZeroOne() * 5.0f) + mtx.yw;
|
||||
effPos.z = (Rand_ZeroOne() * 5.0f) + mtx.zw;
|
||||
effScaleStep = -40;
|
||||
effLife = 3;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue