Search found 24 matches
- Wed Apr 15, 2015 3:09 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Nvl mode background problem. [SOLVED]
- Replies: 17
- Views: 2346
Re: Nvl mode background problem.
To do that, you could change the background of the textbox to a transparent image. There's a tutorial on that somewhere around here. Would you like a link? Edit: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=9233&hilit=customizing+the+textbox Just use a transparent png for the image and you...
- Wed Apr 15, 2015 2:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Nvl mode background problem. [SOLVED]
- Replies: 17
- Views: 2346
Re: Nvl mode background problem.
That would be because the background to the textbox is transparent black. you could try typing the text as "centered"? You're right, when I center the text, the gray background disappeared, but I want to put the text on the top left of the screen. How can I solve this problem? Thanks in advance :)
- Wed Apr 15, 2015 2:05 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Nvl mode background problem. [SOLVED]
- Replies: 17
- Views: 2346
Nvl mode background problem. [SOLVED]
Hi everybody! I am trying to use de nvl mode on my game, but I have an annoying problem: http://i.gyazo.com/d29ed0fc42a9795e948bd974002e8506.png "b" image is white, but when I start the game this is what's happen: http://i.gyazo.com/9b935908dec79201c508b7befe421259.png The background is gray and the...
- Tue Apr 14, 2015 4:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to... (Help with text)
- Replies: 4
- Views: 686
Re: How to... (Help with text)
Well, yes, that's what the centered character does. It centers the text on the screen both vertically and horizontally. I'm not sure I know what you want either -- you've clearly gone to some length to center the text but you say you want the text in the upper left corner. It SEEMS like what you ac...
- Tue Apr 14, 2015 3:23 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to... (Help with text)
- Replies: 4
- Views: 686
Re: How to... (Help with text)
Edit.philat wrote:Well, the general answer is use xalign 0 yalign 0 on the text style, but can't really help more without knowing more about how you're showing the text.
But the only thing that I've done is center the text on the screen
- Mon Apr 13, 2015 2:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to... (Help with text)
- Replies: 4
- Views: 686
How to... (Help with text)
Hi again! I have a question that it's really bothering me and I've been searching for a while, but the unique solution that I found doesn't works for me, so here I am :? http://i.gyazo.com/b1b091aaacce2c73062fb36998697fdc.png http://i.gyazo.com/d8f72ec4e117f9d3b4e3605e1e79d304.png I want to put the ...
- Tue Mar 24, 2015 4:20 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Problem with health points
- Replies: 4
- Views: 616
Re: Problem with health points
When you increasing health points somewhere in your script you need to do it like $ player_points = min(player_max, player_points + some_health_increasing) to not let the value of player_points be greater then player_max. https://docs.python.org/2/library/functions.html#max Now I can continue worki...
- Tue Mar 24, 2015 2:46 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Problem with health points
- Replies: 4
- Views: 616
Problem with health points
Hi everybody, I have a problem with the points on Ren'py: init: $ player_points = 100 $ player_max = 100 and even when the label start: label start: $ player_points = 100 $ player_max = 100 And here: frame: has vbox text "Your health: [player_points]%" textbutton "Return" action Return() I want to p...
- Sun Mar 22, 2015 6:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Problem with transitions
- Replies: 1
- Views: 347
Problem with transitions
Hi! I'm new here and I'm spanish, so my english is not the best. Anyway, I need the help from some kind soul. I started a game with Ren'py and the problem is really weird: https://www.youtube.com/watch?v=ogyBZMAQt44&feature=youtu.be Only for a second you should be able to see the problem between the...