-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.rpy
38 lines (26 loc) · 1.14 KB
/
start.rpy
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
"""Старт мода.
В данном файле мод добавляется в оригинальный список всех
модификаций ``mods`` и в его модифицированную табличную
версию ``modsImages``.
Также здесь описана метка старта модификации ``renpy_tech_start``.
"""
init 999 python hide:
from store import mods
from store.renpy_tech.config import Config
_config = Config() # type: Config
mods["renpy_tech_start"] = "{}".format(_config.MODIFICATION_NAME) # добаление мода в список модов
try:
from store import modsImages as mods_images
except ImportError as _:
pass
else:
mods_images["renpy_tech_start"] = (None, False, _config.MODIFICATION_NAME) # добаление мода в табличный список модов
label renpy_tech_start:
window hide dissolve2
$ renpy.scene()
$ renpy.show("bg black")
$ renpy.with_statement(dissolve2)
$ renpy.block_rollback()
window show
me "Привет, разработчик!"
window hide