| 798 | } |
| 799 | |
| 800 | void dBodySetNoUpdatePosMode(dBodyID b, int enabled) |
| 801 | { |
| 802 | dAASSERT(b); |
| 803 | if (enabled) b->flags |= dxBodyNoUpdatePos; |
| 804 | else b->flags &= ~dxBodyNoUpdatePos; |
| 805 | } |
| 806 | |
| 807 | int dBodyGetNoUpdatePosMode(dBodyID b) |
| 808 | { |
no outgoing calls
no test coverage detected