Last active
December 12, 2015 02:08
-
-
Save maco1028/4696256 to your computer and use it in GitHub Desktop.
Ren'py Blossom Code
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 Blossom | |
#桜吹雪 | |
init: | |
image blossoms = SnowBlossom(Animation("image/sakura.png", 0.5)) | |
#雪降り | |
image snow = Fixed( | |
SnowBlossom(im.FactorScale("image/snow.png",1.1),count=15,start=5), | |
SnowBlossom(im.FactorScale(im.Alpha("image/snow.png",0.8),0.6),count=15,yspeed=(75,150))) | |
show sakura | |
show snow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment