| 154 | } |
| 155 | |
| 156 | static U32 JumpOutEffectPlrEjectCB(U32, xAnimActiveEffect*, xAnimSingle*, void* object) |
| 157 | { |
| 158 | _zEntTeleportBox* tbox = (_zEntTeleportBox*)object; |
| 159 | xVec3 tmp; |
| 160 | |
| 161 | tbox->currPlrState = PLAYER_STATE_EJECTING; |
| 162 | tbox->plrCtrlTimer = 1.2f; |
| 163 | |
| 164 | xVec3Copy(&tmp, (xVec3*)&tbox->model->Mat->pos); |
| 165 | |
| 166 | tmp.y += 1.0f; |
| 167 | |
| 168 | zFX_SpawnBubbleHit(&tmp, 50); |
| 169 | |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static U32 JumpOutEffectJOAnimCB(U32, xAnimActiveEffect*, xAnimSingle*, void* object) |
| 174 | { |
nothing calls this directly
no test coverage detected