Hi I am making a game where the sprite I control has to get past another sprite moving back and forth. I am trying to make an if statement that says if the sprite I control is past a certain point, i win the game
writing something like
if mysprite.get_position() > (-100, 10):
mysprite.say("I win!")
does not seem to work. I'm trying to figure out how to compare where its position is on the grid. thanks!