generated from remarkablegames/renpy-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d048ce8
commit 93bad40
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,9 @@ label start: | |
"Tooltip": | ||
jump tooltip | ||
|
||
"Transform": | ||
jump transform_example | ||
|
||
"Voice": | ||
jump voice | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
transform fadein: | ||
alpha 0.0 | ||
easein 1.0 alpha 1.0 | ||
|
||
transform flip: | ||
xzoom -1.0 | ||
|
||
transform unflip: | ||
xzoom 1.0 | ||
|
||
transform resize(x, y): | ||
size (x, y) | ||
|
||
transform scale(ratio): | ||
zoom ratio | ||
|
||
transform tint(color): | ||
matrixcolor TintMatrix(color) | ||
|
||
transform ypos(position): | ||
ypos position | ||
|
||
label transform_example: | ||
|
||
show eileen happy at left, flip, fadein | ||
|
||
e "I'm on the left." | ||
|
||
show eileen vhappy at right, unflip, scale(1.5) with ease | ||
|
||
e "I'm on the right." | ||
|
||
jump start |