Search found 6 matches

by HikariJake
Sun Mar 11, 2018 8:51 pm
Forum: Ren'Py Cookbook
Topic: Separated History Screen
Replies: 11
Views: 6373

Re: Separated History Screen

This is amazing, thank you!

Now this may be too much to ask, but just in case you do know how to do this: would it be possible to activate the History screen by scrolling up with the mouse? Like most visual novels.
by HikariJake
Sun Mar 11, 2018 3:59 am
Forum: Creative Commons
Topic: GUI & Sprites [CC BY-NC 3.0]
Replies: 2
Views: 3797

Re: GUI & Sprites [CC BY-NC 3.0]

Whoa, I love the girl! The art looks so... classical? Like, it kinda reminds me of old Final Fantasy art lol
by HikariJake
Sat Mar 03, 2018 11:50 pm
Forum: Ren'Py Questions and Announcements
Topic: How to move text up/down (on a y-axis) with NVL format? [SOLVED]
Replies: 5
Views: 2251

Re: How to move text up/down (on a y-axis) with NVL format?

Woohoo! Looks like that did the trick.
Might even move the text down a bit more, actually :lol: Thank you!

Image
by HikariJake
Sat Mar 03, 2018 6:47 pm
Forum: Ren'Py Questions and Announcements
Topic: How to move text up/down (on a y-axis) with NVL format? [SOLVED]
Replies: 5
Views: 2251

Re: How to move text up/down (on a y-axis) with NVL format?

You can keep distance from the top by using padding: screen nvl(dialogue, items=None): window: style "nvl_window" has vbox: spacing gui.nvl_spacing top_padding 20 # keeps a distance of 20 pixels to the top border First of all, thanks a ton for the help! However, I ended up getting this er...
by HikariJake
Fri Mar 02, 2018 12:50 am
Forum: Ren'Py Questions and Announcements
Topic: How to move text up/down (on a y-axis) with NVL format? [SOLVED]
Replies: 5
Views: 2251

Re: How to move text up/down (on a y-axis) with NVL format?

So I found out how to move the text down... except it ended up widening the space between ALL of the lines :cry: What I did was went into gui.rpy and changed the "text_ypos" from 10 to 60... ## The position, width, and alignment of the dialogue text. define gui.nvl_text_xpos = 360 define g...
by HikariJake
Thu Mar 01, 2018 9:52 pm
Forum: Ren'Py Questions and Announcements
Topic: How to move text up/down (on a y-axis) with NVL format? [SOLVED]
Replies: 5
Views: 2251

How to move text up/down (on a y-axis) with NVL format? [SOLVED]

The answer to this is probably really obvious but I'm very new to Ren'Py and suck at coding so here I am (I actually made an account just for this question lol... Nice to meet you guys :lol: ) All I want to do is move the first line of NVL text mode down just a smidge. I think having the text start ...