Last active
December 12, 2015 02:09
-
-
Save maco1028/4696637 to your computer and use it in GitHub Desktop.
Renpy Chara Left Move
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Renpy Chara Left Move | |
| init: | |
| $ ch1 = Character("キャラ1", image="Chara01") | |
| image ch1 = "image/chara01.png" | |
| image ch1 smile = "image/chara01_smile.png" | |
| image ch1 sad = "image/chara01_sad.png" | |
| transform smooth: | |
| on show: | |
| xalign 1.0 | |
| linear 0.5 xalign 0.0 | |
| on hide: | |
| xalign 0.0 | |
| linear 0.5 xalign 1.0 | |
| show ch1 at left,smooth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment