コード例 #1
0
ファイル: player.py プロジェクト: italomaia/turtle-linux
 def flip(self):
   self.x = self.x - 2
   Gameobject.flip(self)
   self.on_ground = False
   if self.current_animation == "arrow":
     self.current_animation = "default"
   return
コード例 #2
0
ファイル: projectile.py プロジェクト: geofmatthews/csci321
 def flip(self):
   self.saveddx = -self.dy
   self.saveddy = self.dx
   Gameobject.flip(self)
   return
コード例 #3
0
ファイル: projectile.py プロジェクト: italomaia/turtle-linux
 def flip(self):
     self.saveddx = -self.dy
     self.saveddy = self.dx
     Gameobject.flip(self)
     return
コード例 #4
0
 def flip(self):
     self.attached = cycle_clockwise(self.attached)
     Gameobject.flip(self)
     return
コード例 #5
0
ファイル: spider.py プロジェクト: italomaia/turtle-linux
 def flip(self):
   self.attached = cycle_clockwise(self.attached)
   Gameobject.flip(self)
   return