Search found 34 matches

by YumaDazai
Wed Jun 14, 2023 4:43 pm
Forum: General Discussion
Topic: Is Lemmesoft Dying
Replies: 50
Views: 31268

Re: Is Lemmesoft Dying

Even though activity is down, I feel like the forum won't die for years to come. It's a great resource. I've been a big lurker, but I've been trying to be more active in the community since I've started solo deving. I feel like the forum feel, while to people who grew up with it is a comfortable and...
by YumaDazai
Wed Jun 14, 2023 4:15 pm
Forum: General Discussion
Topic: As a Solo Dev, What is your workflow? [conversation]
Replies: 6
Views: 2093

Re: As a Solo Dev, What is your workflow? [conversation]

Hi YumaDazai, I'm still starting out - having gravitated to Ren'Py during my first game jam with seven days remaining. Grain of salt here until someone doing this longer also weighs in.......... Thanks for your perspective! I agree with the focus changing the workflow! I personally am an animation ...
by YumaDazai
Tue Jun 13, 2023 8:56 pm
Forum: General Discussion
Topic: As a Solo Dev, What is your workflow? [conversation]
Replies: 6
Views: 2093

As a Solo Dev, What is your workflow? [conversation]

As a solo dev, I often find myself jumping around, going from scripting to art to coding. I can't seem to just stick to one thing until it's done enough to go to the next. For example, I keep jumping from script writing to working on Defining things in the code, to concept art. So, I wanted to ask, ...
by YumaDazai
Sat May 20, 2023 8:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] append list then pull list to print name
Replies: 2
Views: 178

Re: append list then pull list to print name

If you're talking about getting the recently appended item, you do it as you would normally do, use indices to access the items. $ l = party[len(party) - 1] $ l = party[-1] "[l.name]" Both of these are correct, the latter is the easier one since in Python you can start accessing from righ...
by YumaDazai
Sat May 20, 2023 7:42 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] append list then pull list to print name
Replies: 2
Views: 178

[Solved] append list then pull list to print name

Hello! So basically, I have a blank list, then in a menu, depending on the option, it will append the list. My thing is, I want to take the appended list, and apply the class? If that makes sense? Like, have the list auto-fill the self.name function. (For example, the list is $list = [] , then it is...
by YumaDazai
Mon Jul 25, 2022 5:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Image Attributes (Tags? Not sure what to call it)
Replies: 3
Views: 402

Re: Image Attributes (Tags? Not sure what to call it)

Dark12ose wrote: Mon Jul 25, 2022 2:18 am Hope that all makes sense.
OMG THANK YOU SO MUCH THIS HAS HELPED SO MUCH, YOU EXPLAINED IT A LOT BETTER THAN THE RENPY WEBSITE. AGAIN THANK YOU!
by YumaDazai
Sun Jul 24, 2022 11:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Image Attributes (Tags? Not sure what to call it)
Replies: 3
Views: 402

Image Attributes (Tags? Not sure what to call it)

So I am a little confused on how image attributes and tags work. I've read the documentation on the Renpy website and searched the fourm, but can't seem to figure it out. I am trying to make it where if I do MG "Hello" MG happy "I am happy" when I type MG happy, the sprite of a c...
by YumaDazai
Fri Jul 08, 2022 1:59 pm
Forum: Ren'Py Questions and Announcements
Topic: elsif statement not jumping to label, giving error
Replies: 2
Views: 281

elsif statement not jumping to label, giving error

I am trying to make it so that when a button is clicked, it will jump to a label/screen. The code is as follows: define selection_number = 0 define selection_hovered = 0 define output = 0 screen menu_button: imagebutton: idle "/images/Wheel UI/menu_button.png" action Show("wheel_UI&qu...
by YumaDazai
Tue May 17, 2022 8:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Re: Making a movie background play when a image button is hovered

nevermind, Figured it out. I just switched the files from .ogv to .webm, and it fixed itself. Thanks for the help!
by YumaDazai
Tue May 17, 2022 7:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Re: Making a movie background play when a image button is hovered

Things in screens are shown onscreen in order they coded in your script. So just chang the order of elements - add background movie and than show wheel ui. Also, check the movie sprite documentation (the same link). Yep. That worked! I also added a mask to see if the would help, and it did, but it ...
by YumaDazai
Tue May 17, 2022 3:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Re: Making a movie background play when a image button is hovered

... If I just use the add function, it wont work because .ogv is not a supported image, as it is a video file. Just create an image out of video and add it to the screen (see the sample with video bg for main menu) - https://www.renpy.org/doc/html/movie.html#movie-displayables-and-movie-sprites Tha...
by YumaDazai
Mon May 16, 2022 5:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Re: Making a movie background play when a image button is hovered

... When you hovering button the 'hovered' action will run again and again, so jump action is not good here. Why don't you show the movie as part of the screen - the way you show images? if selection_hovered == 1 or selection_number == 1: add "/images/Wheel UI/Wheel_selection_1.png" if se...
by YumaDazai
Sat May 14, 2022 8:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Re: Making a movie background play when a image button is hovered

for the error that you gotten you have this [ in the wrong spot hovered SetVariable[("selection_hovered", 7), Jump("test_movie")] Yeah, That didn't fix it unfortunately. I still get the same error. For the mousearea, it didnt help either. At this point I'm not sure if there is a...
by YumaDazai
Thu May 12, 2022 9:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a movie background play when a image button is hovered
Replies: 9
Views: 779

Making a movie background play when a image button is hovered

So as the title says, I'm not sure how to get the movie to play. I can get it to play if the button is clicked, but I can not get it to play when the button is hovered on. The code for the button is as follows define selection_number = 0 define selection_hovered = 0 define output = 0 screen menu_but...
by YumaDazai
Thu Apr 28, 2022 8:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Elif statement not doing what I want
Replies: 8
Views: 496

Re: Elif statement not doing what I want

Oh no I didn't see that! I am no longer running into errors. Thank you all for the help. I can take it from here! I greatly appreciate it!