Companion Wulf
Lone Wolf
- Xy$
- -0.20
I've been playing around with movies/videos in RMMV and started poking around in Graphics.
Now you'd think that logically this (as an example) would work:
However, while it does return true when the video's playing, it still seems to return false or null after reaching EOF. Similarly, its other functions, onVideoEnd and isVideoVisible don't produce expected results either.
Any thoughts on this?
Now you'd think that logically this (as an example) would work:
Code:
Graphics.playVideo('movie');
if (Graphics.isVideoPlaying) {
<Do something>
} else {
<Do something else>
}
Any thoughts on this?