| 437 | } |
| 438 | |
| 439 | static void LocalInterpComp_Angle(float* prev, float* next, float value, cc_bool interpolate) { |
| 440 | value = Math_ClampAngle(value); |
| 441 | *next = value; |
| 442 | if (!interpolate) *prev = value; |
| 443 | } |
| 444 | |
| 445 | void LocalInterpComp_SetLocation(struct InterpComp* interp, struct LocationUpdate* update, struct Entity* e) { |
| 446 | struct EntityLocation* prev = &e->prev; |
no test coverage detected