private void OnPreRender()
 {
     if (this.mIsCallPlay)
     {
         PSVitaVideoPlayer.Update();
     }
 }
 private void OnPostRender()
 {
     PSVitaVideoPlayer.Update();
     if (this.isPlaying)
     {
         if (!this._isBufferingSuccess && this.currentTime != 0L)
         {
             this.OnEvent(5);
         }
         else if (this._isBufferingSuccess && this.currentTime == 0L && this.movieDuration == 0L && this._iLooping != 1)
         {
             this.AutoOnFinished();
         }
     }
 }
Ejemplo n.º 3
0
 private void OnPostRender()
 {
     //IL_0054: Unknown result type (might be due to invalid IL or missing references)
     //IL_005a: Invalid comparison between Unknown and I4
     PSVitaVideoPlayer.Update();
     if (isPlaying)
     {
         if (!_isBufferingSuccess && currentTime != 0L)
         {
             OnEvent(5);
         }
         else if (_isBufferingSuccess && currentTime == 0L && movieDuration == 0L && (int)_iLooping != 1)
         {
             AutoOnFinished();
         }
     }
 }
 private void OnPreRender()
 {
     PSVitaVideoPlayer.Update();
 }