Search found 7 matches

by MarFazzo
Wed Feb 10, 2016 11:17 am
Forum: Ren'Py Questions and Announcements
Topic: Transparent background
Replies: 2
Views: 525

Transparent background

Hi all. I have this code: define myChar = Character(what_size=34, what_outlines=[(1, "#000", 0, 0)], what_text_align=0, window_right_margin=150, window_left_margin=150) This permits, when used in a part of the game, to have a box with 150 pixels of margin from left and from right. I know that i can ...
by MarFazzo
Wed Feb 10, 2016 11:16 am
Forum: Ren'Py Questions and Announcements
Topic: Transparent background
Replies: 1
Views: 424

Transparent background

Hi all. I have this code: define myChar = Character(what_size=34, what_outlines=[(1, "#000", 0, 0)], what_text_align=0, window_right_margin=150, window_left_margin=150) This permits, when used in a part of the game, to have a box with 150 pixels of margin from left and from right. I know that i can ...
by MarFazzo
Tue Jan 26, 2016 12:06 pm
Forum: Ren'Py Questions and Announcements
Topic: How modify alpha value?
Replies: 7
Views: 562

Re: How modify alpha value?

And what can I do if the image is different in different scenes?
by MarFazzo
Tue Jan 26, 2016 11:52 am
Forum: Ren'Py Questions and Announcements
Topic: Put an image over subtitles
Replies: 1
Views: 335

Put an image over subtitles

Is there some trick or function to put an image over the text?
by MarFazzo
Tue Jan 26, 2016 11:29 am
Forum: Ren'Py Questions and Announcements
Topic: How modify alpha value?
Replies: 7
Views: 562

Re: How modify alpha value?

I tried but "alpha" wasn't what i was searching for. In my example i want to overlap an image to the "character text window". I tried all but the caracter text window is ever above the image. How can i do this?
by MarFazzo
Tue Jan 26, 2016 11:02 am
Forum: Ren'Py Questions and Announcements
Topic: How modify alpha value?
Replies: 7
Views: 562

Re: How modify alpha value?

I tried but "alpha" wasn't what i was searching for. In my example i want to overlap an image to the "character text window". I tried all but the caracter text window is ever above the image. How can i do this?
by MarFazzo
Tue Jan 26, 2016 10:48 am
Forum: Ren'Py Questions and Announcements
Topic: How modify alpha value?
Replies: 7
Views: 562

How modify alpha value?

Hi all, i am new to Ren'Py. I wrote this code: image image1= im.Scale("image1.png",150,150) init: $ esubtitle = Character(None, what_size=34, what_outlines=[(1, "#fff", 0, 0)], what_text_align=0, window_background="#f7b916", window_yminimum=150, window_right_padding=180, window_xfill=True, window_xa...