Search found 1347 matches

by namastaii
Tue Oct 26, 2021 3:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound effect while typing?
Replies: 19
Views: 2499

Re: Sound effect while typing?

I'll just put my process here in case you're interested and want a variety of solutions. I tend to make my text input buttons. This isn't a simplified example - just pasted directly from my project Variable: default firstname = "" Python block: (this uses a sound effect for writing and era...
by namastaii
Tue Oct 26, 2021 3:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound effect while typing?
Replies: 19
Views: 2499

Re: Sound effect while typing?

Hey @bloobeary, sorry I didn't see this. If you still want, I can send you an example of something I have in one of my project that works for me. Let me know!
by namastaii
Wed Sep 30, 2020 11:39 am
Forum: Creative Commons
Topic: Creative Commons Resources Directory Website (please contribute) :)
Replies: 7
Views: 1963

Re: Creative Commons Resources Directory Website (please contribute) :)

Oops, sorry about that! Should be back up tomorrow. I had some billing conflicts and have to move some money over
by namastaii
Sun Aug 30, 2020 1:06 am
Forum: Ren'Py Questions and Announcements
Topic: How do I change textboxes on the fly?
Replies: 1
Views: 419

Re: How do I change textboxes on the fly?

You could probably include a variable name in the file name so your textbox is "textbox_[variablenamehere].png" and you change $ variablenamehere = "new perspective" etc and it should change it that way? as another alternative
by namastaii
Thu Aug 27, 2020 1:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Dialog locks with viewport screen
Replies: 6
Views: 555

Re: Dialog locks with viewport screen

could you try putting

Code: Select all

modal False
at the top of the screen before the viewport?
by namastaii
Thu Aug 27, 2020 2:54 am
Forum: Creative Commons
Topic: Creative Commons Resources Directory Website (please contribute) :)
Replies: 7
Views: 1963

Creative Commons Resources Directory Website (please contribute) :)

I have posted in the discord about this before but I'm not sure if I've posted a thread (sorry if I have already) but I finally switched this to a better web host so please check it out to find assets (quicker/easier) and please contribute some links on there as well! There is a page for this. The ...
by namastaii
Thu Aug 27, 2020 2:39 am
Forum: Creative Commons
Topic: Resource Catalogue
Replies: 18
Views: 138422

Re: Resource Catalogue

I'm slowly building a visual directory of assets as well. Please feel free to use and contribute to it! visualnovel.studio
by namastaii
Thu Aug 27, 2020 2:30 am
Forum: Ren'Py Questions and Announcements
Topic: Help on simplifying conditional dialogue choice branches?
Replies: 4
Views: 454

Re: Help on simplifying conditional dialogue choice branches?

I would have one menu and put all the conditionals inside that menu
by namastaii
Sun Jul 19, 2020 1:24 am
Forum: Ren'Py Questions and Announcements
Topic: Change position of main menu buttons
Replies: 2
Views: 413

Re: Change position of main menu buttons

Put each group of buttons you want under their own hbox. use xalign 0.5 on both of them screen navigation(): vbox: style_prefix "navigation" xalign 0.5 yalign 0.8 spacing gui.navigation_spacing hbox: xalign 0.5 if main_menu: textbutton _("Start") action Start() else: textbutton _...
by namastaii
Mon Jul 13, 2020 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Instant label jump when call screening
Replies: 1
Views: 354

Re: Instant label jump when call screening

I'm not sure why it would do that. I'd first try putting

Code: Select all

modal True
in your screen in case that's causing conflict. Modal basically makes it so you can only click the screen and not through it.
by namastaii
Sun Jul 12, 2020 2:12 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Conditional side image
Replies: 5
Views: 626

Re: [Solved] Conditional side image

Sorry about that, I didn't notice the post was from 2014!
by namastaii
Sun Jul 12, 2020 2:36 am
Forum: Ren'Py Questions and Announcements
Topic: Basic ATL help for Contains Function
Replies: 1
Views: 489

Re: Basic ATL help for Contains Function

I would do the color transforms on the image itself if it makes no difference. What is the exact effect you're going for? I think what the video shows is an animation of a photo moving over to the left in the background (on a loop) and then another layer (with transparent windows) bumping up and dow...
by namastaii
Sun Jul 12, 2020 2:24 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Conditional side image
Replies: 5
Views: 626

Re: Conditional side image

you probably want to address the "who" but I'm not sure. I haven't messed with side images in a couple of years. But right now you're referring to the entire character function *update* here I found this https://lemmasoft.renai.us/forums/viewtopic.php?t=25136 :) This is probably the most s...