beta_bowser_anchor.inc.c (846B)
1 2 /** 3 * Behavior for bhvBetaBowserAnchor. 4 * This seems to be a beta bowser anchor object. It continuously updates to be 5 * about the same distance away from Mario as Bowser is, and it is destructive. 6 */ 7 8 /** 9 * Update function for bhvBetaBowserAnchor. 10 * It continuously updates to be in front of Mario, 11 * and attacks all non-Mario objects it touches. 12 * It continuously sets its hitbox radius/height 13 * based on gDebugInfo[DEBUG_PAGE_EFFECTINFO]. 14 */ 15 void bhv_beta_bowser_anchor_loop(void) { 16 // Set the object's position to be 30 units above Mario's feet, 17 // and 300 units in front of him. 18 cur_obj_set_pos_relative(gMarioObject, 0, 30.0f, 300.0f); 19 20 o->hitboxRadius = gDebugInfo[DEBUG_PAGE_EFFECTINFO][0] + 100; 21 o->hitboxHeight = gDebugInfo[DEBUG_PAGE_EFFECTINFO][1] + 300; 22 23 obj_attack_collided_from_other_object(o); 24 }