Hi,
Using the following XP script: viewtopic.php?f=11&t=67068&p=668741&hilit=zoom#p668741
I'm making a cutscene. In short, because of how I'm animating it, Midgar is a 640x480 characterset.
I want to "zoom in" on midgar, slowly, as the end of the cutscene.
It's been a long while since I've used RMXP or RGSS, so I'm a bit rusty. Anyone got any ideas on how this could work?
The idea was it would slowly zoom in during the for loop.
Using the following XP script: viewtopic.php?f=11&t=67068&p=668741&hilit=zoom#p668741
I'm making a cutscene. In short, because of how I'm animating it, Midgar is a 640x480 characterset.
I want to "zoom in" on midgar, slowly, as the end of the cutscene.
Code:
# my attempts, didn't seem to do anything
class Interpreter
def zoom_in_on_midgar
x = 1.0
y = 1.0
for i in 0...100
x += 0.1
y += 0.1
$game_player.zoom(x, y)
end
end
end
It's been a long while since I've used RMXP or RGSS, so I'm a bit rusty. Anyone got any ideas on how this could work?
The idea was it would slowly zoom in during the for loop.