Exemplo n.º 1
0
        public void prevImage()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            fileSeeker.toPrev();

            onChangeImage.Invoke();
        }
        public void prevVideo()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            decoder.stopDecoding();
            fileSeeker.toPrev();

            onChangeVideo.Invoke();
        }