Freeworlddev
Formerly 'Hegemon1984'
- Feb 17, 2025
- 7
- 4
Hey guys,
I've got two images: a PNG file of a car interior and a webm file of a moving forest that's fixed behind the car interior. The idea is to make it look like the car is driving forward while the looping forest is played.
Car interior:
Forest loop video:
However, my script looks like this:
In the end, I get a misaligned car interior image that looks like this:
As you can see, it looks like the car is doing a wheelie lol, it's not aligned right in the image. Is there some renpy code I can do to adjust the image itself? In addition, there's some weird black bars at the windows, how would I fix that?
I've got two images: a PNG file of a car interior and a webm file of a moving forest that's fixed behind the car interior. The idea is to make it look like the car is driving forward while the looping forest is played.
Car interior:
You must be registered to see the links
Forest loop video:
You must be registered to see the links
However, my script looks like this:
Code:
transform fullscreen:
size (1920, 1080)
image forest = Movie(play="images/cgs/prologue/prologue_carinterior/forest.webm", size=(1920, 1080), loop=True)
image car_interior = "images/cgs/prologue/prologue_carinterior/carinterior.png"
show forest
show car_interior at fullscreen

As you can see, it looks like the car is doing a wheelie lol, it's not aligned right in the image. Is there some renpy code I can do to adjust the image itself? In addition, there's some weird black bars at the windows, how would I fix that?