コード例 #1
0
ファイル: player.py プロジェクト: endermath/Planetoid
 def hit(self):
     if self.canBeHurt:
         BasicSprite.hit(self)
         self.canBeHurt = False
         self.hurtCounter = 40
         self.xspeed = - self.xspeed
         self.yspeed = 0 #random.gauss(-10,2) - self.yspeed
         Player.hurtSound.play()
コード例 #2
0
 def hit(self):
     if self.canBeHurt:
         BasicSprite.hit(self)
         self.canBeHurt = False
         self.hurtCounter = 40
         self.xspeed = -self.xspeed
         self.yspeed = 0  #random.gauss(-10,2) - self.yspeed
         Player.hurtSound.play()
コード例 #3
0
ファイル: insectoid.py プロジェクト: endermath/Planetoid
 def hit(self):
     BasicSprite.hit(self)
     Insectoid.hitSound.play()
コード例 #4
0
 def hit(self):
     BasicSprite.hit(self)
     Insectoid.hitSound.play()
コード例 #5
0
ファイル: derpboss.py プロジェクト: endermath/Planetoid
 def hit(self):
     BasicSprite.hit(self)
     DerpBoss.hitSound.play()
コード例 #6
0
ファイル: derpboss.py プロジェクト: endermath/Planetoid
 def hit(self):
     BasicSprite.hit(self)
     DerpBoss.hitSound.play()