You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
280 B
12 lines
280 B
3 years ago
|
import pygame
|
||
|
|
||
|
pygame.init()
|
||
|
# 小型外星人出现的事件
|
||
|
CREATE_ENEMY = pygame.USEREVENT
|
||
|
pygame.time.set_timer(CREATE_ENEMY, 500)
|
||
|
# 具有发射子弹功能的外星人出现的事件
|
||
|
CREATE_ENEMY_1 = pygame.NUMEVENTS
|
||
|
pygame.time.set_timer(CREATE_ENEMY_1, 2000)
|
||
|
|
||
|
|