This is what I do:
Step 1: Create your sprites(ex. mario), but only facing right. Center the x point in the sprite origin.
Step 2: Create an "Execute code" in the step event. Open it.
Step 3: This is what you put in the code -->
if keyboard_check(vk_left)
image_xscale = -1
if keyboard_check(vk_right)
image_xscale = 1
//
endALTERNATIVE: If you mean the way its facing (from a 0-360 degree scale) you need to use this:
image_angle = ?
replace ? with a number between 1-360. 0 being right, 90 being up, 180 being left, and 270 being down.THIS REQUIRE THE REG. VERSIONI've attached an open source(Directional.gmk) and an exe for those without gm7.
Attached File ( Number of downloads: 1 )
Directional.zip