Search found 17 matches

by BlueLakeKylie
Wed Feb 24, 2016 3:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Subtitle text
Replies: 3
Views: 742

Re: Subtitle text

You have to create a new character and modify the character definition with certain things to make it look like a subtitle. For example define subtitle = Character(None, color="#ffffff", what_font = "whatever.ttf", what_text_align=0.5, what_xalign=0.5, window_yalign=0.0, window_...
by BlueLakeKylie
Tue Feb 16, 2016 2:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Subtitle text
Replies: 3
Views: 742

Subtitle text

This is something I've been trying to figure out for hours now, and I seriously just can't figure it out. I'm trying to create an intro for my game, with pictures and subtitle text appearing under the images (kind of like Undertale), with gradually appearing text and text beeps like the rest of the ...
by BlueLakeKylie
Fri Nov 20, 2015 1:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

Thank you so much… it finally works!
by BlueLakeKylie
Thu Nov 19, 2015 3:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

The side image is appearing correctly, but so is the default missing picture. My textbox will always have the picture in it, but I hid it for the sake of testing, and when I do that, both images disappear. # My side images defined at the top of script.rpy: image side groose sweg = "groosesweg.j...
by BlueLakeKylie
Wed Nov 18, 2015 5:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

Alright, never did it but I think I have an idea about how you should do it. First you have to define the images in the script.rpy, including the side images for the textbox, this is basic so renpy can find the pictures, you already probably know this but I prefer to explain everything just in case...
by BlueLakeKylie
Tue Nov 17, 2015 2:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

Could you be more elaborate? I seriously have no clue how to do this, nor have I ever seen it answered before. I don't have any idea exactly where to search for an answer, either. I've spent hours upon hours searching for answers to questions like these and I've never found them, so that's not parti...
by BlueLakeKylie
Sun Nov 15, 2015 6:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

Sorry for the bump but I would really like an answer to this
by BlueLakeKylie
Sat Nov 07, 2015 12:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Re: Side Image Question

When I use the code in the options file and use the show command in the game as I would for a normal image, the side image appears in the middle bottom of the screen, behind the text box. How do I customize that…?
by BlueLakeKylie
Wed Nov 04, 2015 4:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Side Image Question
Replies: 16
Views: 5209

Side Image Question

Is it possible to just control the side image (the one in the text box) freely? I'm trying to get the main character's pictures to show in the text box at all times , not just when he's talking, and I want to just be able to choose which one it shows throughout the game, so I can just show what line...
by BlueLakeKylie
Mon Nov 02, 2015 3:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound effect for new game button doesn't work
Replies: 2
Views: 295

Sound effect for new game button doesn't work

There's something that's been irritating me for a while, and I can't seem to figure out why it won't work. I'm trying to customize sounds for all of my menu buttons, the majority of which work, except for the new game button. When I click on it, it doesn't make any sounds, despite being set the exac...
by BlueLakeKylie
Sat Oct 24, 2015 12:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound channel question
Replies: 1
Views: 349

Sound channel question

I've just got a question that I can't find the answer to anywhere…

How do I set functions like these:

Code: Select all

config.enter_sound = "MenuOpen.wav"
config.exit_sound = "MenuClose.wav"
to an alternate sound channel?
by BlueLakeKylie
Sat Oct 24, 2015 11:36 am
Forum: Ren'Py Questions and Announcements
Topic: Imagemap and window problems
Replies: 10
Views: 1027

Re: Imagemap and window problems

Augh. Never mind, I found out the problem. There was a typo in one of the hover button files I coded in. It works now.
by BlueLakeKylie
Fri Oct 23, 2015 8:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagemap and window problems
Replies: 10
Views: 1027

Re: Imagemap and window problems

All right, thanks. So I figured out the imagebutton thing, and now I've been able to get the working buttons to appear on the screen, but now it's continuously crashing whenever I hover over the buttons, or sometimes before I even have a chance to do anything. Crashing as in, the window just closes ...
by BlueLakeKylie
Thu Oct 22, 2015 9:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagemap and window problems
Replies: 10
Views: 1027

Re: Imagemap and window problems

Thanks, I'm working on it now, but… answers for these? On the subject of text boxes, I have another small question: How do you center the text in the text box? I just want the specific code to make ALL the text in the text boxes centered; I'm sure it's very simple, but I just want to be sure what wo...