| 4835 | } |
| 4836 | |
| 4837 | static void PlayerBoundUpdate(xEnt* ent, xVec3* pos) |
| 4838 | { |
| 4839 | xEntDefaultBoundUpdate(ent, pos); |
| 4840 | ent->bound.sph.r = 0.5f; |
| 4841 | ent->bound.sph.center.y -= ent->bound.sph.r; |
| 4842 | xVec3AddScaled(&ent->bound.sph.center, &globals.player.RootUp, ent->bound.sph.r - 0.2f); |
| 4843 | } |
| 4844 | |
| 4845 | // Equivalent; scheduling. |
| 4846 | void PlayerMountHackUpdate(F32 delta) |
nothing calls this directly
no test coverage detected