初次使用pygame实现绘图功能就踩坑 直接上代码 这段代码在linux以及windows下运行没毛病,但是在mac系统下偏偏卡死了。 很头疼,我想出现卡死最有可能是因为无限循环造成的,于是乎,我把循环代码删除。重新运行能看到绘制的图片一闪而过。 那么问题肯定就出在循环里面了。 于是我又收索"运行p ...
分类:
系统相关 时间:
2018-06-23 19:12:47
阅读次数:
701
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # Author: ss 4 5 import pygame 6 import sys 7 import random 8 import math 9 10 11 class Ball(pygame... ...
分类:
编程语言 时间:
2018-06-23 01:23:21
阅读次数:
184
import pygame # pygame2d游戏 import time from pygame.locals import * class HeroPlane(object): def __init__(self,screen_temp): self.x=210 self.y=700 self... ...
分类:
其他好文 时间:
2018-06-22 17:42:07
阅读次数:
196
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #Author: ss 4 5 import pygame 6 import sys 7 8 # 初始化 9 pygame.init() 10 11 size = width,height = 10... ...
分类:
移动开发 时间:
2018-06-22 13:29:42
阅读次数:
743
1.Python发展史 1.Python发展史 1.Python发展史 1.Python发展史 1.Python发展史 1.Python发展史 ...
分类:
编程语言 时间:
2018-06-13 00:11:43
阅读次数:
167
用Python和Pygame写游戏-从入门到精通(6) http://eyehere.net/2011/python-pygame-novice-professional-6/ ...
分类:
其他好文 时间:
2018-06-12 20:57:59
阅读次数:
116
http://www.pygame.org/docs/ref/time.html#pygame.time.Clock ...
分类:
其他好文 时间:
2018-06-11 22:11:01
阅读次数:
931
https://www.pygame.org/docs/ref/rect.html#pygame.Rect https://blog.csdn.net/YZXnuaa/article/details/79011795 ...
分类:
其他好文 时间:
2018-06-11 21:57:01
阅读次数:
148
在开始正式编写飞机大战游戏之前,对pygame所提供的模块进行学习,以下代码只是验证了一些功能,并不能进行飞机大战游戏。 在开始正式的编写代码之前一定一定要先调用pygame.init()方法,并相应的调用pygame.quit()方法,这里要养成好的习惯,把成对出现的代码一并写好,以免最后忘记写, ...
分类:
编程语言 时间:
2018-05-27 13:39:43
阅读次数:
291
你只要替换相关的有意思图片就可以实现各种有意思的东西 ...
分类:
其他好文 时间:
2018-05-21 12:47:32
阅读次数:
334