Functions | |
| void | KT_StreamPlayMyVideo (char *name, u8 screen) |
| Start playing a .EMC video. You must Init a 16bit BG before. | |
| int | KT_IsStreamVideoPlaying (void) |
| Return 1 if there is a video playing. Return 0 else. | |
| int | KT_GetFrameCount (char *name) |
| Return the number of frame of the video name.EMC. | |
| int | KT_GetCurrentFrame (void) |
| Return the number of the frame of the video playing. | |
| void | KT_SetCurrentFrame (int frame) |
| Put the video to the frame number frame. | |
| void | KT_StopStreamVideo (void) |
| Stop the video. | |
| void | KT_StreamVideoUpdate (void) |
| Update the video playing. Use it at each VBL for example. | |
| int KT_GetCurrentFrame | ( | void | ) |
Return the number of the frame of the video playing.
| int KT_GetFrameCount | ( | char * | name | ) |
Return the number of frame of the video name.EMC.
| name | Name of the video (ex : for "video.EMC", you should use : "video"). 1024 car max. |
| int KT_IsStreamVideoPlaying | ( | void | ) |
Return 1 if there is a video playing. Return 0 else.
| void KT_SetCurrentFrame | ( | int | frame | ) |
Put the video to the frame number frame.
| frame | number of the frame. |
| void KT_StopStreamVideo | ( | void | ) |
Stop the video.
| void KT_StreamPlayMyVideo | ( | char * | name, | |
| u8 | screen | |||
| ) |
Start playing a .EMC video. You must Init a 16bit BG before.
| name | Name of the video (ex : for "video.EMC", you should use : "video"). 1024 car max. | |
| screen | Screen... (0 - 1). |
| void KT_StreamVideoUpdate | ( | void | ) |
Update the video playing. Use it at each VBL for example.
1.5.6