mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-23 16:45:12 -04:00
Player doc: anim wrappers (#1434)
* player cs docs setup * more docs * more docs * missed enums * more docs, but broken. Need to fix sPlayerCsModeAnimFuncs * fix * rm enum * more minor docs * PR suggestion * typo * csActionFunc * PR Suggestion * player animation * cleanup * cleanup * comments * macro * fix bss * another comment * better macro * move macro * fix bss * adjust names * simplify enum * missed flags * PR Review * adjust comment * missed defines
This commit is contained in:
+4
-4
@@ -121,10 +121,10 @@ Gfx* SubS_DrawTransformFlex(PlayState* play, void** skeleton, Vec3s* jointTable,
|
||||
gSPSegment(gfx++, 0x0D, mtx);
|
||||
Matrix_Push();
|
||||
rootLimb = Lib_SegmentedToVirtual(skeleton[0]);
|
||||
pos.x = jointTable->x;
|
||||
pos.y = jointTable->y;
|
||||
pos.z = jointTable->z;
|
||||
rot = jointTable[1];
|
||||
pos.x = jointTable[LIMB_ROOT_POS].x;
|
||||
pos.y = jointTable[LIMB_ROOT_POS].y;
|
||||
pos.z = jointTable[LIMB_ROOT_POS].z;
|
||||
rot = jointTable[LIMB_ROOT_ROT];
|
||||
newDlist = rootLimb->dList;
|
||||
limbDList = rootLimb->dList;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user