Essentially, you select the male, double click on the male animation, select the female, double click on the female animation, and select the male gens and double click on the gens animation. The catch is that the animations (unfortunately) set the character's positions to 0,0,0. The way around that is to create an "null", parent both characters to that, apply the animations to the characters, and them move them wherever you want by moving the null. (Or, similarly, by creating a group, putting them both in the group and then positioning the group.)How ... I have no idea how to activate or run Renderotica animations in DAZ3d. If i try it the characters are all over the show.. Is there a good tut video on how to do this?
Essentially, you select the male, double click on the male animation, select the female, double click on the female animation, and select the male gens and double click on the gens animation. The catch is that the animations (unfortunately) set the character's positions to 0,0,0. The way around that is to create an "null", parent both characters to that, apply the animations to the characters, and them move them wherever you want by moving the null. (Or, similarly, by creating a group, putting them both in the group and then positioning the group.)
Ok so Ive made a short animation which looks pretty good... now how do i insert it into RenPY?
The way I usually learn about "how to do X in Ren'py" is to find a game that does it and then decompile it to look at the source...If I may also ask, how do you loop the avi?
image movie = Movie(size=(1920, 1080), xpos=0, ypos=0, xanchor=0, yanchor=0)
scene jensensleep
show text "During the night..." with dissolve
with Pause(2)
play movie "dream.avi" loop
show movie with fade
show text "Very early the next morning..." with dissolve
with Pause(2)
show text "KNOCK... KNOCK... BANG... Riiiiinggg" with dissolve
with Pause(2)
scene jensenawake
Code (Text):
image dream = Movie(size=(1920, 1080), xpos=0, ypos=0, xanchor=0, yanchor=0)
Code (Text):
scene jensensleep
show text "During the night..." with dissolve
with Pause(2)
play dream "dream.avi" loop
show text "Very early the next morning..." with dissolve
with Pause(2)
show text "KNOCK... KNOCK... BANG... Riiiiinggg" with dissolve
with Pause(2)
scene jensenawake
It's hard to advise you on Ren'py code if it's not put in the forum with proper indentation, since indentation is significant.
"pause" normally waits for user input, so if it's properly placed and indented, Ren'py should sit there until the user clicks, then should move on to the next statement.
What you've done (it appears) is to create an "image" that's the movie, and then use it as the background using "scene". Another option would be to "show" the video image, pause for a click, and then "hide" the image.
I'd get this working without all the "extras" stuff. If, later, you decide that you want to separate the videos out into an "extras pack," that's fine. But right now it's complicating things.
show movie
play movie "name of movie file goes here" loop
show movie with dissolve
other Ren'py commands go here (i.e. dialog while the movie is playing in the background)
hide movie
stop movie
show movie
play movie "dream1.webm" loop
show movie with dissolve
hide movie
show movie
play movie "dream1.webm" loop
show movie with dissolve
stop movie
image dream1 = Movie(size=(1920, 1080), xpos=0, ypos=0, xanchor=0, yanchor=10)
show movie
play movie "dream1.webm" loop
show movie with dissolve
pause
hide movie
stop movie
image dream1 = Movie(size=(1920, 1080), xpos=0, ypos=0, xanchor=0, yanchor=10)