Search found 8 matches

by v1si0n4ry
Tue May 29, 2018 4:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

kivik wrote: Tue May 29, 2018 3:53 pm I didn't do anything! You solved it all yourself! :)
Hahaha, but your intention is what counts :lol:
by v1si0n4ry
Tue May 29, 2018 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

It is a paragraph tag WITH pause hahaha. I solved it with the DUMBEST code ever, but it worked: show black with Pause(1) show text "{size=+10}{b}Chapter I\n{/size}{/b}" with dissolve with Pause(2) show text "{size=+10}{b}Chapter I\n{/size}{/b}Beginnings" with dissolve so it displ...
by v1si0n4ry
Tue May 29, 2018 3:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

Maybe a workaround would be create a tag that picks up the contents and phases it in with alpha from 0 to 1 linearly... I just don't know how to make that
by v1si0n4ry
Tue May 29, 2018 3:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

The weirdest part is that it breaks the line, but it doesn't apply the wait effect, like if the tag worked partially.
by v1si0n4ry
Tue May 29, 2018 2:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

I did try and it didn't work (I mean it formatted and displayed the text with dissolve, but the whole text at once)
by v1si0n4ry
Tue May 29, 2018 2:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Re: Creating paragraph Tag for outside of dialogue?

Put it in a screen and use text: screen chapter_title(title): text title: xalign 0.5 yalign 0.5 label start: show screen chapter_title("{size=+10}{b}{p}Chapter I{/size}{/b}{p=2} Beginnings") with Dissolve(5) pause 5 hide screen chapter_title "Hi" The text property in screens wil...
by v1si0n4ry
Tue May 29, 2018 2:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating paragraph Tag for outside of dialogue?
Replies: 11
Views: 925

Creating paragraph Tag for outside of dialogue?

Hello, fellow developers, I have been trying to find a way to create a paragraph tag effect in a text outside a dialogue, for chapter titles. The problem is, the paragraph tag only work inside dialogue and I want to display a text in the middle of the screen. It would be something like this: show te...