WTS/game/scripts/utility/dialogue.rpy

31 lines
525 B
Plaintext
Raw Normal View History

2022-05-16 23:48:22 +00:00
# Handling of doll transitions in dialogue
define sprite_pos = {
"x": {
"base": 1538,
"default": 1538,
"far_right": 1556,
"mid": 960,
"left": 756,
"far_left": 444,
"right": 1111,
"close": 1360
2022-05-16 23:48:22 +00:00
},
"y": {
"base": 1080,
"default": 1080,
2024-05-16 16:07:03 +00:00
"head": 1580,
"low": 1880
2022-05-16 23:48:22 +00:00
}
}
init python:
2022-05-16 23:48:22 +00:00
def replace_text(s):
s = s.replace('--', u'\u2014') # em dash
return s
config.replace_text = replace_text