Cutscenes - CodenameCrew/CodenameEngine GitHub Wiki
The Files
- Intro cutscenes are found in
data/cutscenes/song.hx
. - Outro cutscenes are found in
data/cutscenes/song-end.hx
.
function create() {
startVideo(Paths.video("video"), function() {
close();
});
}
Example of playing a video during a cutscene.
Running the close();
function either starts from intro or ends from cutscene.