Search found 15 matches

by Xenubin
Wed Feb 14, 2024 9:02 am
Forum: Ren'Py Questions and Announcements
Topic: Exception caught when cycling through a list via a button
Replies: 4
Views: 267

Re: Exception caught when cycling through a list via a button

default list1 = { "1" : "", "2": "", "3": "" } Yours is not a list, it's a dictionary. default mylist = ["this", "is", "a", "list"] I did Initially have it set up like that, but was still getting the...
by Xenubin
Wed Feb 14, 2024 8:51 am
Forum: Ren'Py Questions and Announcements
Topic: Exception caught when cycling through a list via a button
Replies: 4
Views: 267

Exception caught when cycling through a list via a button

Hi all! I'm playing around with some screen language again and testing out a super rough character creation screen. Currently I have a little screen with a name input box, no issues there thankfully,a nd im trying to add a cycleable section below it for something like pronouns, a title, etc for the ...
by Xenubin
Thu Dec 28, 2023 9:47 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using transitions when hiding screens from a button image
Replies: 1
Views: 597

Re: [SOLVED]Using transitions when hiding screens from a button image

Figured it out!!

i set up a custom transition

Code: Select all

transform musicTrans:
    on show:
        alpha 0.0
        ease 0.5 alpha 1.0
    on hide:
        ease 0.5 alpha 0.0

and then added "at musicTrans" under the drag portion
by Xenubin
Thu Dec 28, 2023 9:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using transitions when hiding screens from a button image
Replies: 1
Views: 597

[SOLVED]Using transitions when hiding screens from a button image

Hi! back again to be annoying ages ago I finalllyyy got the music player working in my game, and now im finally working on some updates now that the demo is out. TLDR I added a button to hide it (bc why have it on the screen the whole time) and a button to show it back up in another place but I thin...
by Xenubin
Thu Jul 20, 2023 7:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Music Player showing same title for different songs
Replies: 4
Views: 753

Re: Music Player showing same title for different songs

I finally got it! just for anyone who comes across a similar issue, here's my final code that I had in my screens.rpy file init python: # Step 1. Create a MusicRoom instance. mr = MusicRoom(fadeout=1.0) song_list = [ ["music/Byte.wav", 'Byte', 'Tocirah'], ["music/Dial.wav", 'Dial...
by Xenubin
Mon Jul 17, 2023 7:34 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Music Player showing same title for different songs
Replies: 4
Views: 753

Re: Music Player showing same title for different songs

You have 'song_name' and 'song_description' set during the init phase and they have the last values from 'song_list' list. In your screen you need to use a function to get tune that is playing. Also, you'll need renpy.restart_interaction() in your function to refresh text onscreen (it is used inter...
by Xenubin
Sat Jul 15, 2023 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Music Player showing same title for different songs
Replies: 4
Views: 753

[SOLVED] Music Player showing same title for different songs

So after a hot minute I finally set up my music player to show the track and the 'artist' of it, but much to my dismay its showing the same track name for every song. The 'artist' portion isnt a n issue *yet* but I have more songs by a different artist i'll be adding in soon and i want to amake sure...
by Xenubin
Sat May 27, 2023 8:29 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED}NVL Line spacing issues with images
Replies: 7
Views: 1072

Re: [SOLVED}NVL Line spacing issues with images

That fixed it actually!! Im gonnaplay around with tweaking the orientation of the icons again, but the rest looks great now!
by Xenubin
Wed May 24, 2023 7:07 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED}NVL Line spacing issues with images
Replies: 7
Views: 1072

Re: NVL Line spacing issues with images

If you check the nvl screen it uses vpgrid (viewport grid) if gui.nvl_height is not None . However, you need to disable it to adjust the height dynamically. A simple solution would be to use a viewport: So I got the viewport to work (kinda) But it's currently only showing one 'message' at a time at...
by Xenubin
Tue May 23, 2023 7:30 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED}NVL Line spacing issues with images
Replies: 7
Views: 1072

Re: NVL Line spacing issues with images

So, re-replying to this thread with further questions related to this. I got it all sorted using the changes above that ticlock suggested. I had to do another small tweak to get my icons in line with their names again like they were before but now its like renpy isn't reading my Bottom NVL border. M...
by Xenubin
Mon May 22, 2023 4:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED}NVL Line spacing issues with images
Replies: 7
Views: 1072

Re: NVL Line spacing issues with images

Thank you!! I have no idea why I didn't try to edit the nvl_height when i was messing with stuff
by Xenubin
Mon May 22, 2023 8:33 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED}NVL Line spacing issues with images
Replies: 7
Views: 1072

[SOLVED}NVL Line spacing issues with images

Okay, so. I'm working on a lil short game jam game and I'm heavily utilizing the NVL feature to make it look like a chat messaging system. So far I've had no real issues with any of the spacing and alignments (Though i do still need to m ake some small updates) That said, I'm having some issues with...
by Xenubin
Wed May 03, 2023 7:53 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]Music player name showing as file, unable to skip to next queued track
Replies: 2
Views: 844

Re: Music player name showing as file, unable to skip to next queued track

Oh wow! Sorry about that, I think I was just under the impression that it was a 'homebrew' style item that a lot of the community used. Hence my desire to 'not use it' because I've been trying to learn as much as I can without taking external tools or other peoples code. (Sounds dumb bc theyre meant...
by Xenubin
Tue May 02, 2023 9:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved]Music player name showing as file, unable to skip to next queued track
Replies: 2
Views: 844

[solved]Music player name showing as file, unable to skip to next queued track

Okay, so . With a bit of finangling and a ton of searching, I've been able to get a functional MP3 player on the screen (kinda) I m ade the custom screen, it shows correctly. it shows the title of whats playing. I have the pause and play buttons working correctly. But two issues: 1) the track is dis...
by Xenubin
Tue Apr 25, 2023 8:29 pm
Forum: Welcome!
Topic: Guestbook
Replies: 5541
Views: 2846679

Re: Guestbook

Name: Max
Location: US

Im just here to try to fix my problems with my projects 9/10 times