(solved) Using Daz3d - does Renpy skip scenes with no dialogue or Screens?

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Post Reply
Message
Author
Two Dollars
Newbie
Posts: 24
Joined: Wed Oct 11, 2023 1:51 pm
Deviantart: SophomoricEnt
Contact:

(solved) Using Daz3d - does Renpy skip scenes with no dialogue or Screens?

#1 Post by Two Dollars »

Rookie questions. So we're using Daz3D for our visual novel. Basically the code is like this. No sprites or anything like that. We have a different image for each scene.

Code: Select all


label start:

	scene scene1image1
	e "Hello"
	
	scene scene1image2
	
	scene scene1image3
	
	scene scene1image4
	
	scene scene1image5
	f "Oh hi. I didn't see you."
	
return

I've just noticed that if I don't have any dialogue or any Screens in a scene that it just skips the scene. In the example above it goes from scene1image1 and the way down to scene1image5, skipping images 2,3 and 4.

Two Dollars
Newbie
Posts: 24
Joined: Wed Oct 11, 2023 1:51 pm
Deviantart: SophomoricEnt
Contact:

Re: (solved) Using Daz3d - does Renpy skip scenes with no dialogue or Screens?

#2 Post by Two Dollars »

I figured it out.

Code: Select all


label start:

	scene scene1image1
	e "Hello"
	
	scene scene1image2
	pause

	scene scene1image3
	pause

	scene scene1image4
	pause

	scene scene1image5
	f "Oh hi. I didn't see you."
	
return


Post Reply

Who is online

Users browsing this forum: No registered users