22 lines
905 B
Python
22 lines
905 B
Python
from gamedata.objects.bg.backgrounddrawer import BackgroundDrawer
|
|
|
|
class MenuBackground(BackgroundDrawer):
|
|
|
|
def __init__(self,game):
|
|
super().__init__(0,0,game,game.DISPLAY_WIDTH,game.DISPLAY_HEIGHT,game.sprite_lib["grid.png"],0.025)
|
|
|
|
# Initialise son sprite
|
|
shadow = game.sprite_lib["shadow.png"]
|
|
self.shadow = game.pygame.transform.scale(shadow,(1500,1500)) # J'augmente la taille de l'ombre
|
|
|
|
def step(self,game):
|
|
super().step(game)
|
|
destx = (game.inputs["mouse"]["pos"][0]-game.DISPLAY_WIDTH/2)
|
|
desty = (game.inputs["mouse"]["pos"][1]-game.DISPLAY_HEIGHT/2)
|
|
game.globals["camerax"] += (destx-game.globals["camerax"])/6
|
|
game.globals["cameray"] += (desty-game.globals["cameray"])/6
|
|
|
|
def draw(self,game):
|
|
super().draw(game)
|
|
game.lib.drawcenter(game,self.shadow,game.DISPLAY_WIDTH/2,game.DISPLAY_HEIGHT*3/5)
|