| 1159 | namespace anim_coll |
| 1160 | { |
| 1161 | void post_move(xEnt& ent) |
| 1162 | { |
| 1163 | xMat4x3& mat = *(xMat4x3*)ent.model->Mat; |
| 1164 | xEnt::anim_coll_data& ac = *ent.anim_coll; |
| 1165 | |
| 1166 | ac.old_mat = ent.frame->mat; |
| 1167 | |
| 1168 | xMat4x3Mul(&mat, &ac.new_mat, &ac.old_mat); |
| 1169 | |
| 1170 | ent.frame->mat = mat; |
| 1171 | } |
| 1172 | |
| 1173 | void pre_move(xEnt& ent) |
| 1174 | { |
no test coverage detected