Ale skoro pojazd ma się nie obracać tylko spychać to jak chcesz nim skręcać?
spychanie na boki bez obracania.
GML (step)
if ( keyboard_check( ord( 'A' ) ) ) { motion_add( image_angle - 90, 0.3 ); /*image_angle += 8;*/ }
if ( keyboard_check( ord( 'D' ) ) ) { motion_add( image_angle + 90, 0.3 ); /*image_angle -= 8;*/ }
if ( keyboard_check( ord( 'W' ) ) ) motion_add( image_angle, 0.5 );
if ( keyboard_check( ord( 'S' ) ) ) motion_add( image_angle, -0.2 );