Search found 11 matches

by David Santos
Thu Aug 04, 2022 11:46 pm
Forum: Ren'Py Questions and Announcements
Topic: I want to change the size and position of the home menu buttons
Replies: 1
Views: 271

I want to change the size and position of the home menu buttons

I want to change the size and position of the home menu buttons
by David Santos
Mon Aug 01, 2022 2:14 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make a character zoom in a bit when talking, just like in DDLC
Replies: 4
Views: 767

How to make a character zoom in a bit when talking, just like in DDLC

I need the character to have a little zoom animation when talking, just like in the game doki doki literature club
by David Santos
Thu Jul 28, 2022 4:54 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

laure44 wrote: Thu Jul 28, 2022 4:18 pm What didn't work, exactly? Did you get an error? Or an unwanted result maybe?
I'm having problems with the resolution, it doesn't stay at 1280 x 720
by David Santos
Thu Jul 28, 2022 4:07 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

Since you did not mention trying, have you tried this solution from m_from_space? This looks like a very good way to do what you're trying to achieve. For this to happen you have to create a movie Displayable and just show it to the player (via a screen might be the best solution). https://www.renp...
by David Santos
Thu Jul 28, 2022 12:31 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

laure44 wrote: Thu Jul 28, 2022 11:13 am Try using renpy.pause after renpy.movie_cutscene, like so

Code: Select all

    $renpy.movie_cutscene("myfile.avi")
    $renpy.pause(2, hard=True)

I tried, this method doesn't work
by David Santos
Thu Jul 28, 2022 10:28 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

Don't use renpy.movie_cutscene, since you cannot forbid skipping using this function! Not directly, but with the addition of some other lines of code, its perfectly possible, if not the best approach. label start: window hide $renpy.pause(2, hard=True) #adjust the number to match however long the v...
by David Santos
Thu Jul 28, 2022 9:58 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

For this to happen you have to create a movie Displayable and just show it to the player (via a screen might be the best solution). https://www.renpy.org/doc/html/movie.html image mymovie = Movie(play="file.webm") screen mymoviescreen: add "mymovie" # return from screen after 10...
by David Santos
Thu Jul 28, 2022 9:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

Don't use renpy.movie_cutscene, since you cannot forbid skipping using this function! Not directly, but with the addition of some other lines of code, its perfectly possible, if not the best approach. label start: window hide $renpy.pause(2, hard=True) #adjust the number to match however long the v...
by David Santos
Thu Jul 28, 2022 9:50 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

Re: I need that the player can't skip the movie

Could you write the code for me so I can just copy it? the video file is "yustudio" 3 seconds long. sorry, i'm brazilian and my english is bad
by David Santos
Thu Jul 28, 2022 12:11 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] I need that the player can't skip the movie
Replies: 14
Views: 714

[SOLVED] I need that the player can't skip the movie

I need that the player cannot skip the movie and that the text box does not appear when the movie is played