1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-09 00:00:44 +00:00

Decompiles ovl_En_St (#349)

* decompile and match En_St

* document ovl_En_St

* Implement OPEN_DISPS, and remove useless comments

* styling updates, inline some declarations

* PR suggestions as well as changing the BlureInit colors to u8 arrays over RGBA types

* remove pointer from EnSt_SetupAction
This commit is contained in:
krimtonz 2020-09-14 11:17:34 -05:00 committed by GitHub
parent 2fd56429eb
commit 4d9f83da1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
57 changed files with 1084 additions and 2961 deletions

View file

@ -54,25 +54,25 @@ void EnBoom_Init(Actor* thisx, GlobalContext* globalCtx) {
Actor_ProcessInitChain(&this->actor, sInitChain);
trail.p1StartColor.r = 255;
trail.p1StartColor.g = 255;
trail.p1StartColor.b = 100;
trail.p1StartColor.a = 255;
trail.p1StartColor[0] = 255;
trail.p1StartColor[1] = 255;
trail.p1StartColor[2] = 100;
trail.p1StartColor[3] = 255;
trail.p2StartColor.r = 255;
trail.p2StartColor.g = 255;
trail.p2StartColor.b = 100;
trail.p2StartColor.a = 64;
trail.p2StartColor[0] = 255;
trail.p2StartColor[1] = 255;
trail.p2StartColor[2] = 100;
trail.p2StartColor[3] = 64;
trail.p1EndColor.r = 255;
trail.p1EndColor.g = 255;
trail.p1EndColor.b = 100;
trail.p1EndColor.a = 0;
trail.p1EndColor[0] = 255;
trail.p1EndColor[1] = 255;
trail.p1EndColor[2] = 100;
trail.p1EndColor[3] = 0;
trail.p2EndColor.r = 255;
trail.p2EndColor.g = 255;
trail.p2EndColor.b = 100;
trail.p2EndColor.a = 0;
trail.p2EndColor[0] = 255;
trail.p2EndColor[1] = 255;
trail.p2EndColor[2] = 100;
trail.p2EndColor[3] = 0;
trail.elemDuration = 8;
trail.unkFlag = 0;