Panning the scene
Posted: Thu Sep 01, 2016 12:26 pm
I want to make a panning shot of my background right now I am using :
to pan into the middle.
The problem is that I have a character standing in the room that stays on their position of the screen.
And I want to have the character move at the same time the screen does to make it look like the only thing moving is the "camera".
The example above doesn't work for solving the problem since the event doesn't leave the alt block so woop in Class_Lena turned never triggers.
Any ideas how I can make it work so that I can move Lena to the left while moving the classroom bg to the right (at the same time)?
Code: Select all
show Class_Lena turned:
yalign 0.0
on woop:
linear 3.0 xalign 0.0 ypos 0
with dissolve
show class_day:
xanchor 0.0 yanchor 0.0
linear 3.0 xalign 0.5 ypos 0
event woopThe problem is that I have a character standing in the room that stays on their position of the screen.
And I want to have the character move at the same time the screen does to make it look like the only thing moving is the "camera".
The example above doesn't work for solving the problem since the event doesn't leave the alt block so woop in Class_Lena turned never triggers.
Any ideas how I can make it work so that I can move Lena to the left while moving the classroom bg to the right (at the same time)?