Motion

my_sprite.direction += 15
my_sprite.direction -= 15
my_sprite.x = 0 my_sprite.y = 0 OR my_sprite.set_xy((0,0))
x = pysc.random_number(0, 100) y = pysc.random_number(0, 100) my_sprite.set_xy((x,y))
OR

x, y = pysc.get_mouse_pos() my_sprite.set_xy((x,y))
OR

x = another_sprite.x y = another_sprite.y my_sprite.set_xy((x,y))
NOT YET IMPLEMENTED
NOT YET IMPLEMENTED
my_sprite.direction = 90
my_sprite.x += 10
my_sprite.x = 0
my_sprite.y += 10
my_sprite.y = 0
NOT YET IMPLEMENTED