diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2024-12-12 22:58:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 12:58:40 -0800 |
| commit | ee992eb80c798a3c3cec73fb785edf6852fbd259 (patch) | |
| tree | 70aa0f6832e88619a91548c40f999d5b6ade597a /include/f_op | |
| parent | 559fcb3a1649cdc3b671ed0909ab35f15ec0563d (diff) | |
daObj_BouMato_c OK (#2264)
* daObj_BouMato_c OK
* daObjGraRock_c Matched except template function order
* daBkyRock_c OK
Diffstat (limited to 'include/f_op')
| -rw-r--r-- | include/f_op/f_op_actor_mng.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/f_op/f_op_actor_mng.h b/include/f_op/f_op_actor_mng.h index c17a35b667..096fc441c5 100644 --- a/include/f_op/f_op_actor_mng.h +++ b/include/f_op/f_op_actor_mng.h @@ -396,6 +396,14 @@ inline f32 fopAcM_getCullSizeFar(const fopAc_ac_c* i_actor) { return i_actor->cullSizeFar; } +inline const Vec* fopAcM_getCullSizeBoxMin(const fopAc_ac_c* i_actor) { + return &i_actor->cull.box.min; +} + +inline const Vec* fopAcM_getCullSizeBoxMax(const fopAc_ac_c* i_actor) { + return &i_actor->cull.box.max; +} + inline void fopAcM_SetCullSize(fopAc_ac_c* i_actor, s8 i_cullsize) { i_actor->cullType = i_cullsize; } |
