-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreview.py
23 lines (21 loc) · 1011 Bytes
/
preview.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from game_core import *
class PreviewModule(Engine):
def start(self):
print("PreviewModule started")
# self.core.instantiate(SnowflakeEffect)
# self.core.instantiate(MagGen)
# self.core.instantiate(GeoDrawer)
# self.core.instantiate(DebugFps)
# self.core.instantiate(Projection)
# self.core.instantiate(AiTownSpawner)
# self.core.instantiate(AiSimulationSpawner)
# self.core.instantiate(Spaceship)
# self.core.instantiate(GridView, grid_size=self.core.window_size)
# self.core.instantiate(ScreenBlink)
# self.core.instantiate(DrawSystem)
# self.core.instantiate(DrawSystemImage)
# self.core.instantiate(DrawSystemAnimationImage)
# self.core.instantiate(DrawSystemAnimationImageSliced)
# self.core.instantiate(DrawSystemAnimationImageSlicedWithPaddings)
# self.core.instantiate(DrawSystemDirectoryAnimationImageSliced)
Core(background_color=(255, 255, 255, 0), fps=120)