Search found 28 matches

by tapanojum
Sat Jan 22, 2022 4:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy forcibly plays the video in the bt601 color space.
Replies: 5
Views: 699

Re: Renpy forcibly plays the video in the bt601 color space.

Sorry for resurrecting an old thread but I just found this after searching about this same issue. I find this to be a pretty noticeable issue when using Movie(play='movie.webm', start_image = 'image1.webp', image = 'image100.webp'). You can see at the exact point that the playback switches from vide...
by tapanojum
Sun Dec 15, 2019 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Calling Multiple Buttons?
Replies: 5
Views: 772

Re: Calling Multiple Buttons?

Thank you Per K Grok, that was really informative and helpful!
by tapanojum
Sun Dec 15, 2019 3:56 am
Forum: Ren'Py Questions and Announcements
Topic: Calling Multiple Buttons?
Replies: 5
Views: 772

Re: Calling Multiple Buttons?

Thank you guys. Sorry for the confusing question. I shouldn't write questions at 7 am after pulling an all-nighter to hit deadlines. Looks like my understanding of screens and buttons were fundamentally wrong. I was creating 1 screen per button and because of that wasn't able to see multiple buttons...
by tapanojum
Sat Dec 14, 2019 11:14 am
Forum: Ren'Py Questions and Announcements
Topic: Calling Multiple Buttons?
Replies: 5
Views: 772

Calling Multiple Buttons?

Hi, is it possible to call more than one button at a time? I've tried searching the board but the site times out before I can get a result. I know I can do an imagemap but I'm wondering if it's possible to do several buttons at once.

Thanks!
by tapanojum
Mon Dec 09, 2019 7:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Slight delay when webm videos play, why?
Replies: 12
Views: 1102

Re: Slight delay when webm videos play, why?

Sorry, I'm still a bit confused. I've used scene for all my images or videos this entire time. There is no visible transformation between the images, certainly not the 0.5 seconds.
by tapanojum
Mon Dec 09, 2019 6:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Slight delay when webm videos play, why?
Replies: 12
Views: 1102

Re: Slight delay when webm videos play, why?

The scene command uses a transform, Fade. (or Dissolve, I cannot remember which) This may be why. Hmm, that's interesting. Whatever transform is being used, it's not actually transforming from the previous scene. It just showed a checkered empty background for half a second before the video starts ...
by tapanojum
Mon Dec 09, 2019 5:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Slight delay when webm videos play, why?
Replies: 12
Views: 1102

Re: Slight delay when webm videos play, why?

I figured out my issue. I've been using the following syntax for all my video animations this entire time. image anim1 = Movie(play="/animation/anim1.webm", loop = True ) I've now begun using the following syntax. $ renpy.movie_cutscene("/animation/anim_1.webm", loops = -1) Now t...
by tapanojum
Mon Dec 09, 2019 2:45 am
Forum: Ren'Py Questions and Announcements
Topic: Slight delay when webm videos play, why?
Replies: 12
Views: 1102

Slight delay when webm videos play, why?

Hi, I'm having issues with loading videos into my game. The transition from image to video is not instant. There's about a half-second delay where the player sees a transparent background before the video starts. Is there some sort of optimization I need to do? I thought this was normal until I play...
by tapanojum
Tue Jul 10, 2018 8:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Refresh Current Label/Return Previous Label
Replies: 6
Views: 1679

Re: Refresh Current Label/Return Previous Label

Thanks for the response, Remix! I used curry because originally I was getting errors trying to use Function(), after seeing your example I see why. I wrote it as Function(pass_time(60)) instead of Function(pass_time, 60). So this part of the script now works correctly, however I'm now back to the or...
by tapanojum
Tue Jul 10, 2018 10:10 am
Forum: Ren'Py Questions and Announcements
Topic: Refresh Current Label/Return Previous Label
Replies: 6
Views: 1679

Re: Refresh Current Label/Return Previous Label

Anyone have an idea about this?
by tapanojum
Tue Jun 19, 2018 6:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with map, money and buttons.
Replies: 1
Views: 1106

Re: Help with map, money and buttons.

Hey, your post is loaded with so many questions which may be why you're not getting any responses. Probably would be best to work on one or two issues at a time. Question 1 That exact post you linked is also what I used when first getting started. Which button are you referring to? Image map basical...
by tapanojum
Tue Jun 19, 2018 5:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Refresh Current Label/Return Previous Label
Replies: 6
Views: 1679

Re: Refresh Current Label/Return Previous Label

After reading more about renpy.restart_interaction(), I tried adding the restart_interaction to the passtime() function that my screen button is calling. default passtimecurry = renpy.curry(pass_time) init -1 python: def pass_time(mins=1): store.minn += mins renpy.restart_interaction() This doesn't ...
by tapanojum
Tue Jun 19, 2018 12:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Refresh Current Label/Return Previous Label
Replies: 6
Views: 1679

Re: Refresh Current Label/Return Previous Label

Thank you for the reply. I'm at work and can't test this yet. I should add renpy.restart_ interaction () to the action part of the fast forward buttom right? action(passtimecurry (30), Show ("ui_text"), renpy.restart_ interaction ()) Thank you! Edit: I tried the following code, but it free...
by tapanojum
Tue Jun 19, 2018 2:03 am
Forum: Ren'Py Questions and Announcements
Topic: Refresh Current Label/Return Previous Label
Replies: 6
Views: 1679

Refresh Current Label/Return Previous Label

Hello. I have a few image buttons that take you to different locations in the game. Depending on the time of day, a different screen will be called that shows a hotbutton (person) in that location. So for example, in the Park at 12pm you see the hotbutton that lets you talk to Mark. At 1pm, a hotbut...
by tapanojum
Tue May 29, 2018 11:57 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] List of days cycles only through Sunday to Monday
Replies: 5
Views: 900

Re: List of days cycles only through Sunday to Monday

Xavimat, thank you for your reply. That is such a simple and perfect solution. I have no idea why I couldn't think of it. I kept messing with modulo when this works so much better.

Thanks again!