object7E.c OK

This commit is contained in:
theo3
2020-08-15 12:23:03 -07:00
parent c32fcaca51
commit 5ffec8a611
4 changed files with 27 additions and 114 deletions
+26
View File
@@ -0,0 +1,26 @@
#include "global.h"
#include "entity.h"
#include "functions.h"
void Object7E(Entity *this) {
if (this->parent->field_0x4 == NULL) {
DeleteThisEntity();
}
if (this->action == 0) {
this->action = 1;
this->spritePriority.b0 = 7;
this->frameIndex = 0x28;
if (this->entityType.form == 0) {
this->spriteSettings.b.draw = TRUE;
} else if (this->entityType.form == 2) {
this->spriteSettings.b.flipX = TRUE;
}
}
PositionRelative(this->parent, this, 0, 0x80000);
this->height.HALF.HI = 0;
if ((this->entityType).form != 0) {
this->spriteSettings.b.draw = this->attachedEntity->spriteSettings.b.draw;
this->frameIndex = this->attachedEntity->frameIndex + 0x1f;
}
}