Page 1 of 1

Screen Dissolve and Fade

Posted: Sun Oct 11, 2015 5:56 pm
by Tagumonman55
I want the Whole screen to turn black between each text, and delete the previous with Nvl clear, but the

Code: Select all

window hide fade(10.0) 
does not seem to work on

Code: Select all

centered
text....

Code: Select all

 eslow2 "	It was cold today, Very cold. I had awoken after a two month coma, and during that time, 
            the people had started riots for the death of the traitorous ‘Blood-Stained-Prince’ or so 
            I had been labeled. The title rather fit someone as myself, Someone with the name Yatsuray, 
            a flower that grows only in blood, it needs no soil, nor water, only fresh blood."
    
    screen hide fade(10.0)
    $ renpy.pause(5.0)
    nvl clear
    
    centered "{color=#cc0000}I am the Bloody Prince of Quadopolia{/color}"
    
    screen hide fade(10.0)
    $ renpy.pause(5.0)
    nvl clear
    
    eslow2 " Someone like myself, could only learn the true meaning of death and understand it, after witnessing it firsthand. 
            “I watched them all die.” I repeated the words to myself, my hands dripping with their blood, yet where the drops 
            splashed onto the sheets, there was no stain. It was an illusion. The event had traumatized me into seeing the burden 
            upon my hands. The hands that bathed in blood."
    window hide fade(10.0)
    $ renpy.pause(5.0)
    nvl clear
And screen hide fade(10.0) gives me an Error....

Re: Screen Dissolve and Fade

Posted: Mon Oct 12, 2015 5:52 pm
by Steamgirl
I would use:

scene black with dissolve
$ renpy.pause(5.0)
nvl clear
show text "{color=#cc0000}I am the Bloody Prince of Quadopolia{/color}"