WTS/game/scripts/utility/dialogue.rpy
LoafyLemon 8d50133b79 New Textbox
* Implemented new textbox
* Implemented nickname handling for the namebox
* Implemented new reworked fonts
* Implemented PC parts of the textbox
* Recalculated sprite positions, offsets and zooms.
2024-05-14 21:54:03 +01:00

31 lines
519 B
Plaintext

# Handling of doll transitions in dialogue
define sprite_pos = {
"x": {
"base": 1480,
"default": 1480,
"far_right": 1490,
"mid": 1140,
"left": 1040,
"far_left": 250,
"right": 1240,
"close": 1380
},
"y": {
"base": 0,
"default": 0,
"head": 900,
"low": 650
}
}
init python:
def replace_text(s):
s = s.replace('--', u'\u2014') # em dash
return s
config.replace_text = replace_text