- Oct 19, 2020
- 712
- 1,038
No its different I've played that one to.what I want to know if that is a reference to another renpy game I like playing called summertime saga there is a lady there that sells breast milk to the local daycare and the school
You will.Just finished playing. It was a great update! I wish there was a little more of Akeko, but maybe we will see her again in the future.
Cool Thanks.I'm gonna give you a little tip to help you out with your game because I really like what you are doing but I think this could step up your game.
If you want to animate the sex scenes this is the protocol.
Before the dialog section of the script where you declare images add a section for animations.
You still have to declare all the images so keep that in mind.
animations go:
image ass shake:
__"strip 10.png"
__.2
__"strip 11.png"
__.2
__repeat
image, then whatever you want to name it with a ":" after then return with a tab (instead of the line next to it... stupid auto text fixer in the comments) and "" around the image file name. Return and a tab to however long you want the image to appear on screen (.2 is .2 seconds but you can make it longer or shorter based on the number of seconds or tenths of a second that you want) then return tab to the next image and so on until either you want the image to stop or like in the example you can say repeat and it will repeat until you go to the next scene.
Then when you want that animation in the script you say:
show image ass shake
If you would like them to loop and look like motion you can say:
image ass shake:
__"strip 10.png"
__.2
__"strip 11.png"
__.2
__"strip 12.png"
__.2
__"strip 13.png"
__.2
__"strip 12.png"
__.2
__"strip 11.png"
__.2
__repeat
That way when it cycles through the different images it ends up back at the original image and loops.
and voila! forever looping animations!
Hope this helps and we start seeing animations in the next update. Keep up the good work!