-
Notifications
You must be signed in to change notification settings - Fork 1
/
globals.py
47 lines (34 loc) · 1.13 KB
/
globals.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import pygame
pygame.init()
###############################
## Colors ##
###############################
white = (255, 255, 255)
black = (0,0,0)
white = (255,255,255)
red = (255,0,0)
green_theme = (102, 193, 77)
###############################
## Fonts ##
###############################
header = pygame.font.Font('freesansbold.ttf',115)
sub_header = pygame.font.Font('freesansbold.ttf',55)
options_font = pygame.font.Font('freesansbold.ttf',30)
simulation_text = pygame.font.Font('freesansbold.ttf',18)
###############################
## Images ##
###############################
home_background_image = "imgs/abs_1.jpg"
###############################
## screen size ##
###############################
win_width = 1280
win_height = 720
###############################
## Musics ##
###############################
theme_song = "musics/bensound-creativeminds.mp3"
simulation_song = "musics/bensound-enigmatic.mp3"
simulation_song_1 = "musics/bensound-goinghigher.mp3"
simulation_song_2 = "musics/bensound-moose.mp3"
fun_song = "musics/bensound-energy.mp3"