- Apr 5, 2020
- 12
- 4
Hello,
I'm in the process of developing my first game using Ren'Py, and I'm encountering some difficulties in grasping the proper method for playing a video. I've experimented with both options recommended in the tutorial, but I'm facing distinct issues with each.
Using this method, the video clip is visible but skips numerous frames, displaying roughly 3/4 frames out of the total 27.
I've tried using scene with dissolve instead of show and it helps but I would rather have the full clip displayed.
This method functions effectively and displays the entire video, but upon reaching the end, it abruptly returns to the previous scene before transitioning to the next one.
Is there anyone who can provide guidance on resolving these problems?
I'm in the process of developing my first game using Ren'Py, and I'm encountering some difficulties in grasping the proper method for playing a video. I've experimented with both options recommended in the tutorial, but I'm facing distinct issues with each.
Code:
image movieName = Movie(loop = False, image = "bg scene_01_v1a", play = "Scene_01_V1.webm")
show movieName
I've tried using scene with dissolve instead of show and it helps but I would rather have the full clip displayed.
Code:
$renpy.movie_cutscene("Scene_01_V1.webm", stop_music=False)
Is there anyone who can provide guidance on resolving these problems?