your image is like a thumbnail. when you click play movie,
C:
using System;
using UnityEngine;
// Token: 0x0200003F RID: 63
public partial class Recall : MonoBehaviour
{
// Token: 0x06000213 RID: 531 RVA: 0x00036678 File Offset: 0x00034878
public void ClickMovieStart()
{
this.isMoviePlaying = true;
this.movieIDBig = SingletonMonoBehaviour<MovieManager>.Instance.PlayMovie(this.GetMovieFileName(), true, this.uiMovieSelect.transform.Find("PlayMovieRawImage").gameObject);
this.uiMovieSelect.transform.Find("PlayMovieRawImage").gameObject.SetActive(true);
this.uiMovieSelect.transform.Find("MovieThumbnail").gameObject.SetActive(false);
this.uiMovieSelect.transform.Find("PanelScenario_BG").gameObject.SetActive(false);
this.uiMovieSelect.transform.Find("PanelMovie").gameObject.SetActive(false);
this.uiMovieSelect.transform.Find("ButtonStart").gameObject.SetActive(false);
}
}
there is GetMovieFileName().
C:
using System;
using UnityEngine;
// Token: 0x0200003F RID: 63
public partial class Recall : MonoBehaviour
{
// Token: 0x06000211 RID: 529 RVA: 0x00036580 File Offset: 0x00034780
private string GetMovieFileName()
{
int partTableNo = this.getPartTableNo(this.nowParts);
string text = "40_cr_" + this.nowCharacter.ToString("D2") + "_" + this.actionFileStr[partTableNo, this.nowAction];
if (this.nowMovieTime == 1)
{
text += "_n";
}
return text;
}
}
may be this movie file exists at bundle_0 or bundle_1 file.
it's censored several images(for animation). not your image.