11-23-2005, 01:00 PM
CGI Movies
by Tsunokiette
Nov 23 2005
JFYI: A CGI movie is a movie and or cutscene made using multiple images; a good example would be what Square-Enix is doing for FFXII (final fantasy 12)
Ever experience lag problems using the movie script?
Have no problem making the images, but the events just take too long?
Well this script is for you!
What you need to do is create a folder named "CGI" (without quotes) in the Data folder like this ->
Game_Folder => Data => CGI
and then for each CGI movie you want, create a folder in the CGI folder for it like this ->
Game_Folder => Data => CGI => Movie1
and in that movie folder, put all the images needed for the CGI movie named 1...2...3...4...etc. based on the order they need to appear.
Now that we have all that out of the way, add this above Main -
in order to play a CGI Movie you need to use this line -
folder is the folder that contains the CGI images you want to play
scene is the scene you want to return to when the CGI movie is over
skip is automaticly set to false, but put true if you want to be able to skip the CGI movie by pressing esc.
example:
the folder is name movie1 and you want to go to the map afterwards
with skipping
without skipping
people have ssaid they wanted to play a movie before the title screen, so to do that, you would replace this line (in main)
with this (without skipping)
with skipping
by Tsunokiette
Nov 23 2005
This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.
No support is given. If you are the owner of the thread, please contact administration.
JFYI: A CGI movie is a movie and or cutscene made using multiple images; a good example would be what Square-Enix is doing for FFXII (final fantasy 12)
Ever experience lag problems using the movie script?
Have no problem making the images, but the events just take too long?
Well this script is for you!
What you need to do is create a folder named "CGI" (without quotes) in the Data folder like this ->
Game_Folder => Data => CGI
and then for each CGI movie you want, create a folder in the CGI folder for it like this ->
Game_Folder => Data => CGI => Movie1
and in that movie folder, put all the images needed for the CGI movie named 1...2...3...4...etc. based on the order they need to appear.
Now that we have all that out of the way, add this above Main -
CGI Movie Script
in order to play a CGI Movie you need to use this line -
Code:
$scene = Scene_CGI.new (folder, scene, skip)
folder is the folder that contains the CGI images you want to play
scene is the scene you want to return to when the CGI movie is over
skip is automaticly set to false, but put true if you want to be able to skip the CGI movie by pressing esc.
example:
the folder is name movie1 and you want to go to the map afterwards
with skipping
Code:
$scene = Scene_CGI.new ("movie1", Scene_Map.new, true)
without skipping
Code:
$scene = Scene_CGI.new ("movie1", Scene_Map.new)
people have ssaid they wanted to play a movie before the title screen, so to do that, you would replace this line (in main)
Code:
$scene = Scene_Title.new
with this (without skipping)
Code:
$scene = Scene_CGI.new(folder, Scene_Title.new)
with skipping
Code:
$scene = Scene_CGI.new(folder, Scene_Title.new,true)