Skip to content

Commit

Permalink
Customize gradient effects by setting gradient_skips on certain levels
Browse files Browse the repository at this point in the history
  • Loading branch information
DiddiLeija committed Jun 18, 2024
1 parent 58206b4 commit 0a39e9a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/levels.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,18 @@ class One(BaseLevel):
use_gradient = True
gradient_height = 16
gradient_color = 6
gradient_skips = [
15,
14,
12,
11,
9,
8,
6,
5,
3,
2
]


class Two(BaseLevel):
Expand Down Expand Up @@ -264,6 +276,22 @@ class Three(BaseLevel):
use_gradient = True
gradient_color = 9
gradient_height = 60
gradient_skips = [
58,
57,
56,
54,
53,
52,
50,
49,
47,
46,
44,
43,
41,
40
]


class Four(BaseLevel):
Expand Down

0 comments on commit 0a39e9a

Please sign in to comment.