
English
To change the dialogue styles you must create a new file in the next folder:SteamsteamappscommonFrosty Kissgame
For example, let's make a test.rpy file with the following contents:
init python:
style.say_label.outlines = [(0, "#000", absolute(1), absolute(1))] # character name - add shadow
style.say_dialogue.outlines = [(1, "#333", 0,0)] # character dialogue
style.say_thought.outlines = [(1, "#333", 0,0)] # character thoughts
You'll see the changes after you launch the game.
Russian
Чтобы внести изменения в стили необходимо создать новый файл в папке:SteamsteamappscommonFrosty Kissgame
Например, создадим файл test.rpy со следующим содержимым:
init python:
style.say_label.outlines = [(0, "#000", absolute(1), absolute(1))] # character name - add shadow
style.say_dialogue.outlines = [(1, "#333", 0,0)] # character dialogue
style.say_thought.outlines = [(1, "#333", 0,0)] # character thoughts
При следующем запуске игры вы увидите изменения.