- Joined
- May 29, 2013
- Messages
- 98
- Reaction score
- 19
- First Language
- Tagalog :P
- Primarily Uses
Hi! I was wondering if anyone knows a script that's free for commercial use that lets me have a movie splash screen that plays before title screen.
class Scene_Title < Scene_Base alias start_movie start def start Graphics.play_movie('Movies/' + name_of_movie) start_movie endend
class Scene_Title < Scene_Base $play_movie = true alias start_movie start def start if $play_movie Graphics.play_movie('Movies/' + name_of_movie) $play_movie = false end start_movie endend