Search found 6 matches

by vossery
Fri Dec 14, 2018 12:23 am
Forum: Ren'Py Questions and Announcements
Topic: ADD and IMAGE
Replies: 6
Views: 550

Re: ADD and IMAGE

So, I must prefer add. Thanks!
by vossery
Wed Dec 12, 2018 9:10 am
Forum: Ren'Py Questions and Announcements
Topic: ADD and IMAGE
Replies: 6
Views: 550

Re: ADD and IMAGE

They work both!

Code: Select all

screen main_menu:
    tag menu
    style_prefix "main_menu"
    image "images/test.png" xpos 400 ypos 200
and

Code: Select all

screen main_menu:
    tag menu
    style_prefix "main_menu"
    add "images/test.png" xpos 400 ypos 100
by vossery
Wed Dec 12, 2018 1:36 am
Forum: Ren'Py Questions and Announcements
Topic: ADD and IMAGE
Replies: 6
Views: 550

ADD and IMAGE

What is difference between
image "image_name" xpos 10 ypos 10
and
add "image_name" xpos 10 ypos 10
for my screen?
What is better to use?
by vossery
Tue Dec 11, 2018 7:32 am
Forum: Ren'Py Questions and Announcements
Topic: External RPA in Android
Replies: 2
Views: 383

Re: External RPA in Android

OK, I'll be waiting for this feature. :) Thank you for the RenPy!
by vossery
Sat Dec 08, 2018 2:35 am
Forum: Ren'Py Questions and Announcements
Topic: External RPA in Android
Replies: 2
Views: 383

External RPA in Android

Hi! I am using external RPA with the voices in my visual novel. And this RPA archive comes separate from the distribution archive. Is it possible to use this RPA in the Android version of visual novel? I tried to put this RPA in Android/data/[my package name] and Android/data/[my package name]/files...
by vossery
Thu Nov 22, 2018 3:07 am
Forum: Ren'Py Questions and Announcements
Topic: SFX and voices in the separate external .rpa
Replies: 1
Views: 216

SFX and voices in the separate external .rpa

Is it possible to use the separate external .rpa archives (for example, sfx.rpa and voices.rpa) with sound effects and voices in my visual novel?
I want to make sfx and voices archive optionable...