summaryrefslogtreecommitdiff
path: root/game/gui
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-19 08:43:43 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-19 08:43:43 -0300
commite5d0a317c15f51059522b9c5045fc190ea8d1c82 (patch)
treed7d13da0ae24e9253186b36a280d89b1466a09f7 /game/gui
parenta9917d581ec6033748ad8bb87f08fcd86187527c (diff)
downloadclient-e5d0a317c15f51059522b9c5045fc190ea8d1c82.tar.gz
client-e5d0a317c15f51059522b9c5045fc190ea8d1c82.tar.bz2
client-e5d0a317c15f51059522b9c5045fc190ea8d1c82.tar.xz
client-e5d0a317c15f51059522b9c5045fc190ea8d1c82.zip
Correct dialog chara alignment so they are always above the textwindow.
Mobile does not have hide window, and this compensates a bit their obvious lack of height (which only a full body could compensate)
Diffstat (limited to 'game/gui')
-rw-r--r--game/gui/transforms.rpy37
1 files changed, 34 insertions, 3 deletions
diff --git a/game/gui/transforms.rpy b/game/gui/transforms.rpy
index 80a71af..2fb2be9 100644
--- a/game/gui/transforms.rpy
+++ b/game/gui/transforms.rpy
@@ -85,13 +85,44 @@ transform czoom_75:
transform prologue_right1:
xalign 0.67
- yalign 1.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
transform prologue_right2:
xalign 1.1
- yalign 1.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
transform prologue_center:
xalign 0.42
- yalign 1.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
+
+
+transform tcenter:
+ xalign 0.5
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
+
+transform tleft:
+ xalign 0.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
+
+transform tright:
+ xalign 1.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
+
+transform toffscreenleft:
+ xpos 0.0
+ xanchor 1.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)
+
+transform toffscreenright:
+ xpos 1.0
+ xanchor 0.0
+ yanchor 1.0
+ ypos (1824-gui.textbox_height)