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.
-
wyverngem
- Miko-Class Veteran
- Posts: 615
- Joined: Mon Oct 03, 2011 7:27 pm
- Completed: Simple as Snow, Lady Luck's Due,
- Projects: Aether Skies, Of the Waterfall
- Tumblr: casting-dreams
- itch: castingdreams
- Location: USA
-
Contact:
#1
Post
by wyverngem » Tue May 27, 2014 1:24 pm
Is it possible to use a style to clear the nvl with a dissolve? Or text for that matter. I know that you can use
Code: Select all
show text "Hello, world" with dissolve
Is basically the effect I want, but for nvl.
-
Avnish
- Newbie
- Posts: 9
- Joined: Tue May 27, 2014 4:25 pm
- Completed: Rpercussions
- Projects: None, as yet.
-
Contact:
#2
Post
by Avnish » Wed May 28, 2014 4:28 am
You can do something like this:
Code: Select all
nvl clear
nvl show dissolve
"Your text here."
Hope this helped.