| 4392 | } |
| 4393 | |
| 4394 | void zEntPlayerEmitTongueBubbles() |
| 4395 | { |
| 4396 | xModelInstance* model = globals.player.sb_models[6]; |
| 4397 | U8 rand; |
| 4398 | xVec3 vec; |
| 4399 | |
| 4400 | if ((model->Flags & 1) && (rand = xrand(), rand < 0x80)) |
| 4401 | { |
| 4402 | xVec3Copy(&vec, (xVec3*)&model->Mat->pos); |
| 4403 | vec.y -= 0.5f; |
| 4404 | zFX_SpawnBubbleTrail(&vec, 1); |
| 4405 | } |
| 4406 | } |
| 4407 | |
| 4408 | void zEntPlayerEmitSlideBubbles() |
| 4409 | { |
nothing calls this directly
no test coverage detected