| 153 | } |
| 154 | |
| 155 | static void SB1Dummy_UpdateFunc(xEnt* ent, xScene* param_2, F32 param_3) |
| 156 | { |
| 157 | if (ent->frame != NULL) |
| 158 | { |
| 159 | xVec3Copy(&ent->frame->oldvel, &ent->frame->vel); |
| 160 | ent->frame->oldmat = ent->frame->mat; |
| 161 | xRotCopy(&ent->frame->oldrot, &ent->frame->rot); |
| 162 | xMat4x3Copy(&ent->frame->mat, xModelGetFrame(ent->model)); |
| 163 | ent->frame->mode = 0; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | static void SB1Dummy_BoundFunc(xEnt* ent, xVec3* param_2) |
| 168 | { |
nothing calls this directly
no test coverage detected