Search found 6 matches

by pew pew
Sat Feb 10, 2018 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Kerning of Characters
Replies: 4
Views: 1363

Re: Kerning of Characters

Thank you!
I checked it and what_kerning really did work.. The problem was, that the values -1 to 1 have almost no visible effect. Putting 4 is more likely it.
by pew pew
Sat Feb 10, 2018 10:58 am
Forum: Ren'Py Questions and Announcements
Topic: Kerning of Characters
Replies: 4
Views: 1363

Kerning of Characters

Hello there, the Documentation says, kerning works either with tags {kerning=float}{/kerning} or in a screen setup. I have no effing Idea about screens and I don't want to put tags on hundrets of text lines. So: How do I set the kerning for dialouge of a character? ex: define x = Character(None, wha...
by pew pew
Thu Jan 11, 2018 12:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Dynamic Statusbar
Replies: 2
Views: 598

Re: Dynamic Statusbar

Works like a charm and is indeed way simpler as I thought of. Thank you!!
by pew pew
Tue Jan 09, 2018 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Dynamic Statusbar
Replies: 2
Views: 598

Dynamic Statusbar

Hello there, I currently have a problem which i can't figure out. I want a dynamic status bar on top. My Issue is that I don't know how to call a function and in general have no idea how a function is composed. I'd like to be it a function, since I belive this way is the faster and cleaner approach....
by pew pew
Tue Jan 09, 2018 5:36 pm
Forum: Ren'Py Questions and Announcements
Topic: menu statement expects a non-empty block.
Replies: 12
Views: 13434

Re: menu statement expects a non-empty block.

Your "label start" is where your script or rather your story begins. You can look it up in the renpy tutorial. The "..." was added by me. You don't need that. Here a visualisation of what I mean by indentations (notice the ------ lines): label start -------menu: --------------&qu...
by pew pew
Sun Jan 07, 2018 4:08 pm
Forum: Ren'Py Questions and Announcements
Topic: menu statement expects a non-empty block.
Replies: 12
Views: 13434

Re: menu statement expects a non-empty block.

^is there anything wrong with mine? It keeps saying that menu statements expects a non-empty block and "Yes" and "No" are an expected statement... I had the same problem. Found out that pyhton looks at indentation. menu: "Yes": jump choice1_yes You need to build it up....