mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-21 22:41:14 +00:00
Armos and object_am OK (#652)
* started * all but 2 * OK * docs progress * lots of docs * add gitkeep back * all funcs named * small fix * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "0305ec2c2" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "0305ec2c2" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * object_am * change * ready i think * last thing * asm * progress
This commit is contained in:
parent
79c8accfab
commit
982c645167
131 changed files with 1077 additions and 2585 deletions
|
@ -219,7 +219,7 @@ void EnFirefly_SetupFall(EnFirefly* this) {
|
|||
Animation_Change(&this->skelAnime, &D_0600017C, 0.5f, 0.0f, 0.0f, ANIMMODE_LOOP_INTERP, -3.0f);
|
||||
Audio_PlayActorSound2(&this->actor, NA_SE_EN_FFLY_DEAD);
|
||||
this->actor.flags |= 0x10;
|
||||
func_8003426C(&this->actor, 0x4000, 0xFF, 0, 40);
|
||||
Actor_SetColorFilter(&this->actor, 0x4000, 0xFF, 0, 40);
|
||||
this->actionFunc = EnFirefly_Fall;
|
||||
}
|
||||
|
||||
|
@ -253,7 +253,7 @@ void EnFirefly_SetupFlyAway(EnFirefly* this) {
|
|||
|
||||
void EnFirefly_SetupStunned(EnFirefly* this) {
|
||||
this->timer = 80;
|
||||
func_8003426C(&this->actor, 0, 0xFF, 0, 80);
|
||||
Actor_SetColorFilter(&this->actor, 0, 0xFF, 0, 80);
|
||||
this->auraType = KEESE_AURA_NONE;
|
||||
this->actor.velocity.y = 0.0f;
|
||||
this->skelAnime.playSpeed = 3.0f;
|
||||
|
@ -268,7 +268,7 @@ void EnFirefly_SetupFrozenFall(EnFirefly* this, GlobalContext* globalCtx) {
|
|||
this->actor.flags |= 0x10;
|
||||
this->auraType = KEESE_AURA_NONE;
|
||||
this->actor.speedXZ = 0.0f;
|
||||
func_8003426C(&this->actor, 0, 0xFF, 0, 0xFF);
|
||||
Actor_SetColorFilter(&this->actor, 0, 0xFF, 0, 0xFF);
|
||||
Audio_PlayActorSound2(&this->actor, NA_SE_EN_FFLY_DEAD);
|
||||
|
||||
for (i = 0; i <= 7; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue