Search found 87 matches

by Quelcezot
Tue May 19, 2015 7:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Re: Applying Automatic Transitions to the Text and Who Say B

Thanks again for the help, small update - I've actually got it working now for the main text box and it has made a big difference to how smooth the vn feels. No progress on the side images yet, but it can't be helped.
by Quelcezot
Tue May 19, 2015 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Re: Applying Automatic Transitions to the Text and Who Say B

Thank you very much for that. Looking through it and seeing it in practice has helped me to to rest a lot of my misconceptions. I'm now 100% confident that I can deal with everything... besides side images.

It's definitely a well put together demonstration.
by Quelcezot
Tue May 19, 2015 10:51 am
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Re: Applying Automatic Transitions to the Text and Who Say B

I don't understand what the config variable does. I can't get it to have any effect at all in this case. It does not affect the say window when it appears and disappears, nor does it alter the default transition from hiding and showing the window (which is what I thought it did). config.say_attribut...
by Quelcezot
Tue May 19, 2015 10:27 am
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Re: Applying Automatic Transitions to the Text and Who Say B

Show window and hide window is about something else. If you write show window, the window will always stay visible even with no one talking...which means there would be know use for transitions. The config variable is for what what transition to use when that window appears or disappears depending ...
by Quelcezot
Tue May 19, 2015 10:02 am
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Re: Applying Automatic Transitions to the Text and Who Say B

I think for that to work I have to explicitly write "show window" / "hide window" wherever I want that to happen. So I can make it work like that for pauses: hide window pause show window and I can probably reduce that further, but yes I can't see how to make this affect side ima...
by Quelcezot
Tue May 19, 2015 7:44 am
Forum: Ren'Py Questions and Announcements
Topic: Applying Automatic Transitions to the Text and Who Say Boxes
Replies: 13
Views: 1838

Applying Automatic Transitions to the Text and Who Say Boxes

UPDATE: Still no idea how to achieve this, but I've found an aesthetic alternative. Thank you to everyone who helped or pondered! EDIT: Only need help applying transitions to side images and the who says box My query is how, or whether it is possible, to have the text box and who says box perform a ...
by Quelcezot
Sat May 02, 2015 12:19 pm
Forum: Ren'Py Questions and Announcements
Topic: image layering trouble
Replies: 20
Views: 3024

Re: image layering trouble

I did something similar recently, I'd use x and y pos to line them up correctly off screen then move them into view with linear by moving them the same number of pixels up. To get rid of it you'd just reverse the code to drag them off screen and then hide the lot of them. I can't be more specific wi...
by Quelcezot
Fri May 01, 2015 3:02 pm
Forum: I am an Artist
Topic: ★ ★ Artist for hire/free!
Replies: 9
Views: 3715

Re: ★ ★ Artist for hire/free!

Hello, I love your art and have sent you a pm. Please consider it carefully, and thank you for bringing this artwork into the world.

Update: Found another artist, but keep up the good work (:
by Quelcezot
Tue Apr 28, 2015 7:16 am
Forum: Ren'Py Questions and Announcements
Topic: How to align text displayables to the right [SOLVED]
Replies: 2
Views: 2166

Re: How to align text displayables to the right

Text align is weird - it aligns text inside a block, but not the block itself - so it only makes sense if you have multiple lines of text. You probably want to just change the xalign to 1.0. (Or do you want rtl text?) Thank you, I generally have been using x/yalign to place displayables on the scre...
by Quelcezot
Mon Apr 27, 2015 4:49 pm
Forum: Ren'Py Questions and Announcements
Topic: How to align text displayables to the right [SOLVED]
Replies: 2
Views: 2166

How to align text displayables to the right [SOLVED]

Hello, I am facing a weird, and once again uncomfortably seemingly straightforward problem for which I have found no solution. image PlaceT = ParameterizedText(xalign=0.4, yalign=0.4) show PlaceT "{color=#fff}[Time]{/color}": text_align 1.0 The text_align here throws an error stating that ...
by Quelcezot
Tue Apr 21, 2015 8:00 pm
Forum: Ren'Py Questions and Announcements
Topic: How to move the name box in front of the text box [SOLVED]
Replies: 2
Views: 479

Re: How to move the name box in front of the text box

Probably http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=25117&hilit=order+reverse#p309221 Just tried that, worked straight away. Solved everything. Flip. Sorry for the deja vu. Somehow I didn't find that when searching before. I searched and I searched to no avail, and then when it ca...
by Quelcezot
Tue Apr 21, 2015 6:27 pm
Forum: Ren'Py Questions and Announcements
Topic: How to move the name box in front of the text box [SOLVED]
Replies: 2
Views: 479

How to move the name box in front of the text box [SOLVED]

http://i.imgur.com/Y3SgtjS.png This mystery baffles me. A quick forward, this is my first post to the Lemma Soft Forums so hello to all of you. The problem I'm facing is that I've split the name box from the text box and the actual name box is only the black shape. The text name itself actually tre...