コード例 #1
0
        public void nextImage()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            fileSeeker.toNext();

            onChangeImage.Invoke();
        }
コード例 #2
0
        public void nextVideo()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            decoder.stopDecoding();
            fileSeeker.toNext();

            onChangeVideo.Invoke();
        }