summaryrefslogtreecommitdiff
path: root/game/gui/transforms.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-17 15:43:16 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-17 15:43:16 -0300
commit95771eccb774946cb4533d454b99cc231599e658 (patch)
tree10f121fc7ddac518c077f1563961c105eda6eea0 /game/gui/transforms.rpy
parent55574bdf66cf0e93f3089e0702423dd74bb59715 (diff)
downloadclient-95771eccb774946cb4533d454b99cc231599e658.tar.gz
client-95771eccb774946cb4533d454b99cc231599e658.tar.bz2
client-95771eccb774946cb4533d454b99cc231599e658.tar.xz
client-95771eccb774946cb4533d454b99cc231599e658.zip
Move a few stuff from screens.rpy to gui/ folder
Diffstat (limited to 'game/gui/transforms.rpy')
-rw-r--r--game/gui/transforms.rpy97
1 files changed, 97 insertions, 0 deletions
diff --git a/game/gui/transforms.rpy b/game/gui/transforms.rpy
new file mode 100644
index 0000000..80a71af
--- /dev/null
+++ b/game/gui/transforms.rpy
@@ -0,0 +1,97 @@
+########################################################################################
+# This file is part of Spheres.
+# Copyright (C) 2019 Jesusalva
+
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+########################################################################################
+# Transforms for the displayables
+init offset = -1
+
+transform enemy1:
+ xalign 0.5
+ yalign 0.5
+
+transform enemy2:
+ xalign 1.0
+ yalign 0.5
+
+transform enemy3:
+ xalign 0.0
+ yalign 0.5
+
+transform party1:
+ xalign 0.2
+ yalign 1.0
+
+transform party2:
+ xalign 0.4
+ yalign 1.0
+
+transform party3:
+ xalign 0.6
+ yalign 1.0
+
+transform party4:
+ xalign 0.8
+ yalign 1.0
+
+transform party5:
+ xalign 1.0
+ yalign 1.0
+
+transform c_party1:
+ xalign 0.2
+ yalign 1.0
+ zoom 0.25
+
+transform c_party2:
+ xalign 0.4
+ yalign 1.0
+ zoom 0.25
+
+transform c_party3:
+ xalign 0.6
+ yalign 1.0
+ zoom 0.25
+
+transform c_party4:
+ xalign 0.8
+ yalign 1.0
+ zoom 0.25
+
+transform c_party5:
+ xalign 1.0
+ yalign 1.0
+ zoom 0.25
+
+transform czoom_70:
+ zoom 0.70
+
+transform czoom_75:
+ zoom 0.75
+
+
+transform prologue_right1:
+ xalign 0.67
+ yalign 1.0
+
+transform prologue_right2:
+ xalign 1.1
+ yalign 1.0
+
+transform prologue_center:
+ xalign 0.42
+ yalign 1.0
+