-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoadTextures.py
36 lines (29 loc) · 1.64 KB
/
LoadTextures.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
import pygame
#Clear Button
clearTex_Normal = pygame.image.load('Textures/ClearBtn_Normal.png')
clearTex_Hover = pygame.image.load('Textures/ClearBtn_Hover.png')
clearTex_Click = pygame.image.load('Textures/ClearBtn_Click.png')
#Fractals Button
fractalsTex_Normal = pygame.image.load('Textures/FractalsBtn_Normal.png')
fractalsTex_Hover = pygame.image.load('Textures/FractalsBtn_Hover.png')
fractalsTex_Click = pygame.image.load('Textures/FractalsBtn_Click.png')
#Dragons Curve
dragonsCurveTex_Normal = pygame.image.load('Textures/DragonsCurve_Normal.png')
dragonsCurveTex_Hover = pygame.image.load('Textures/DragonsCurve_Hover.png')
dragonsCurveTex_Click = pygame.image.load('Textures/DragonsCurve_Click.png')
#Kosh Curve a
KoshCurveATex_Normal = pygame.image.load('Textures/KoshCurve_a_Normal.png')
KoshCurveATex_Hover = pygame.image.load('Textures/KoshCurve_a_Hover.png')
KoshCurveATex_Click = pygame.image.load('Textures/KoshCurve_a_Click.png')
#Kosh Curve b
KoshCurveBTex_Normal = pygame.image.load('Textures/KoshCurve_b_Normal.png')
KoshCurveBTex_Hover = pygame.image.load('Textures/KoshCurve_b_Hover.png')
KoshCurveBTex_Click = pygame.image.load('Textures/KoshCurve_b_Click.png')
#Kosh Curve c
KoshCurveCTex_Normal = pygame.image.load('Textures/KoshCurve_c_Normal.png')
KoshCurveCTex_Hover = pygame.image.load('Textures/KoshCurve_c_Hover.png')
KoshCurveCTex_Click = pygame.image.load('Textures/KoshCurve_c_Click.png')
#Kosh Snowflake
KoshSnowflake_Normal = pygame.image.load('Textures/KoshSnowflake_Normal.png')
KoshSnowflake_Hover = pygame.image.load('Textures/KoshSnowflake_Hover.png')
KoshSnowflake_Click = pygame.image.load('Textures/KoshSnowflake_Click.png')