If you have 36 frames for each 10 degree increment, you should be able to just set the animation frame to a single formula something like ((Car.MoveTo.MovingAngle+360)%360)/10
. However that will map 0-10 degrees to the first frame - if you want the first frame to be -5 to +5 degrees, then just shift it back by 5 degrees with something like ((Car.MoveTo.MovingAngle+355)%360)/10