2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
# Handling of doll transitions in dialogue
|
|
|
|
|
|
|
|
define sprite_pos = {
|
|
|
|
"x": {
|
2024-05-14 20:54:03 +00:00
|
|
|
"base": 1480,
|
|
|
|
"default": 1480,
|
|
|
|
"far_right": 1490,
|
|
|
|
"mid": 1140,
|
|
|
|
"left": 1040,
|
|
|
|
"far_left": 250,
|
|
|
|
"right": 1240,
|
|
|
|
"close": 1380
|
2022-05-16 23:48:22 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
"y": {
|
|
|
|
"base": 0,
|
|
|
|
"default": 0,
|
2024-05-14 20:54:03 +00:00
|
|
|
"head": 900,
|
|
|
|
"low": 650
|
2022-05-16 23:48:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 18:41:04 +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
|