Search found 231 matches

by vollschauer
Fri Jul 16, 2021 2:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Steam Deck
Replies: 2
Views: 829

Re: Steam Deck

It's basically a PC with StreamOS installed, so yes, RenPy games should work. It has also a touch screen and you can plug-in a mouse and keyboard if you want ;)
by vollschauer
Fri Jul 16, 2021 12:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Insensitive menu options still selectable with keyboard
Replies: 7
Views: 975

Re: Insensitive menu options still selectable with keyboard

remove that:

Code: Select all

key str(n) action i.action
add keysym to the textbutton, I think it is something like that .... you'll find out

Code: Select all

textbutton str(n) + ". " + i.caption action i.action keysym str(n) style "nvl_button"
by vollschauer
Fri Jul 16, 2021 11:45 am
Forum: Ren'Py Questions and Announcements
Topic: Is there a way to add multiple audio files to the Main Menu?
Replies: 1
Views: 674

Re: Is there a way to add multiple audio files to the Main Menu?

Perhaps not the best solution....

Code: Select all

screen main_menu():

    on "show" action Play("sound", "effect.ogg", loop=True)
by vollschauer
Wed Feb 05, 2020 5:12 am
Forum: Ren'Py Questions and Announcements
Topic: Load / save screen + preferences will not load.
Replies: 2
Views: 452

Re: Load / save screen + preferences will not load.

Like the errors says: Exception: u'Load' is not a screen or a label.
Check your screens.rpy if there is a screen load():
by vollschauer
Tue Sep 10, 2019 7:50 am
Forum: Ren'Py Questions and Announcements
Topic: movie .mkv
Replies: 5
Views: 1212

Re: movie .mkv

Check the codec of your file, here is a list about supported codecs and containers: https://www.renpy.org/doc/html/movie.html
by vollschauer
Thu Jan 10, 2019 4:26 pm
Forum: Ren'Py Questions and Announcements
Topic: Steam Notify/Overlay working on MacOS?
Replies: 0
Views: 317

Steam Notify/Overlay working on MacOS?

Is there a way to control the position (corner) of the Steam notify pop-up thing? Right now it pop-up for me in the upper right corner but I would like to have it more left or right at the bottom. Currently this Steam Notify thing is not even pop-up on my MacOS (Mojave) system, even the overlay (Shi...
by vollschauer
Mon Aug 27, 2018 4:18 am
Forum: Ren'Py Questions and Announcements
Topic: How to play sound on clicking imagebutton?
Replies: 1
Views: 601

Re: How to play sound on clicking imagebutton?

Ok... (usually I would recommend using .wav or .ogg, but I guess mp3 patents expired in 2017!?) The style is: style image_button: activate_sound "mouse_click.mp3" or: imagebutton idle "imgbutton/start.png" xpos 20 -120 focus_mask True at main_btns: action [ Start(""), P...
by vollschauer
Mon Aug 27, 2018 4:04 am
Forum: Ren'Py Questions and Announcements
Topic: Invalid syntax when trying to do a CTC icon
Replies: 1
Views: 565

Re: Invalid syntax when trying to do a CTC icon

Don't define the ctc image inside of you character definition. It' more like: image ctc_animation = Animation("continue1.png", 0.2, "continue2.png", 0.2, "continue3.png", 0.2, "continue4.png", 0.2, xpos=0.99, ypos=0.99, xanchor=1.0, yanchor=1.0) Character(&quo...
by vollschauer
Thu Aug 09, 2018 2:19 am
Forum: Ren'Py Questions and Announcements
Topic: How to left align floating text in top left of screen?
Replies: 1
Views: 689

Re: How to left align floating text in top left of screen?

Wouldn't it be better to do this "info box" as screen?
by vollschauer
Thu Aug 09, 2018 2:09 am
Forum: Ren'Py Questions and Announcements
Topic: alpha and linear in transform delayed_blink() function
Replies: 2
Views: 629

Re: alpha and linear in transform delayed_blink() function

Alpha is basically the opacity of the displayable. And https://easings.net/ helps you to understand what linear means,
actually everything is well explained here: https://www.renpy.org/doc/html/atl.html?highlight=atl
by vollschauer
Mon Jul 09, 2018 1:12 am
Forum: Ren'Py Questions and Announcements
Topic: Does Ren'Py support Live 2D?
Replies: 141
Views: 44743

Re: Does Ren'Py support Live 2D?

Being able to use Live2D in Ren'Py would be awesome ....