0 Star 1 Fork 0

Maoxx/Bunny

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Player.py 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
Maoxx 提交于 2014-01-06 21:04 . OOP
import pygame
import math
class Player (pygame.sprite.Sprite):
playerPos = [100,100]
newPos = [100,100]
def __init__(self):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.image.load("resources/images/dude.png").convert_alpha()
self.rect = self.image.get_clip()
def update(self):
mousePos = pygame.mouse.get_pos()
angle = math.atan2(mousePos[1]-(self.playerPos[1]),mousePos[0]-(self.playerPos[0]))
playerrot = pygame.transform.rotate(self.image, 360-angle*57.29)
window = pygame.display.get_surface()
self.newPos = (self.playerPos[0]-playerrot.get_rect().width/2, self.playerPos[1]-playerrot.get_rect().height/2)
window.blit(playerrot, self.newPos)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/RelaxCat/Bunny.git
git@gitee.com:RelaxCat/Bunny.git
RelaxCat
Bunny
Bunny
master

搜索帮助