Re: I want to lirn pithon but pithon doesn't want me to do so
Something else is your collision detection:
if me.x<0:
me.x==0
if me.y<0:
me.y==0
if me.x>30:
me.x==30
if me.y>30:
me.y==30
In this case, your doing a conditional check equivalent to "is me.y equal to 0?" after you've already setup an if statement. You sould use a single equal sign to change its value, like so:
if me.x<0:
me.x=0
-- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector