程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

飛機大戰python

編輯:Python

幫我看下self.rect.top=randint(-5*self.height,0)這個什麼意思,不是很明白,謝謝

import pygame
from random import *
class Smallenemy(pygame.sprite.Sprite):
def init(self,bg_size):
pygame.sprite.Sprite.init(self)
self.image=pygame.load("images/enemy1.png".convert_alpha)
self.destroy_image=[]
self.destroy_image.extend([
pygame.image.load("images/enemy1_down1.png").convert_alpha(),
pygame.image.load("images/enemy1_down2.png").convert_alpha(),
pygame.image.load("images/enemy1_down3.png").convert_alpha(),
pygame.image.load("images/enemy1_down4.png").convert_alpha()

 ]) self.rect=self.image.get_rect() self.width=bg_size[0] self.height=bg_size[1] self.speed=2 self.active=True self.rect.left=randint(0,self.self.width-self.rect.width) self.rect.top=randint(-5*self.height,0)def move(self): if self.rect.top

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved