Search found 4 matches

by Evernow
Sun May 23, 2021 12:37 am
Forum: Ren'Py Questions and Announcements
Topic: Newline not working and text being cut off on NVL
Replies: 3
Views: 823

Re: Newline not working and text being cut off on NVL

If anyone else encounters this, make sure to do CTRL + F and find other occurrences of the gui.nvl_height variable. I had it set to None at the top, but I did not know there was another value elsewhere.
by Evernow
Sun May 23, 2021 12:35 am
Forum: Development of Ren'Py
Topic: UWP support? (Xbox Creators Program)
Replies: 6
Views: 5267

Re: UWP support? (Xbox Creators Program)

I agree with everyone here! It's already amazing what you can do with an Xbox via UWP (like emulation) which would normally require a hacked console, now all you need is 20 bucks. If Renpy could work with this it would be amazing
by Evernow
Fri May 21, 2021 11:35 am
Forum: Ren'Py Questions and Announcements
Topic: Newline not working and text being cut off on NVL
Replies: 3
Views: 823

Re: Newline not working and text being cut off on NVL

Check gui.nvl_height variable. It controls height of a single Nvl entry. If you plan on using multiline sentences, it would make sense to set it to None to make it dynamically sized. Sadly already set to none define gui.nvl_borders = Borders(0, 15, 0, 30) define gui.nvl_height = None define gui.nvl...
by Evernow
Thu May 20, 2021 10:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Newline not working and text being cut off on NVL
Replies: 3
Views: 823

Newline not working and text being cut off on NVL

Hello there! Currently have an issue where when a text gets too long (either by length of when using a newline) it does not show up properly. For example: d "From this time forward, my sword shall be with you and your fate shall be \n with me. Now, our contract is complete.\" " It sim...