Exemple #1
0
    // Token: 0x060031F5 RID: 12789 RVA: 0x000D03F8 File Offset: 0x000CE5F8
    public void Start()
    {
        AnimatorDriver animatorDriver = this.Animator.AnimatorDriver;

        if (this.WallVisible)
        {
            this.Animator.Initialize();
            animatorDriver.GoToEnd();
        }
        else if (this.HasSense)
        {
            this.Animator.Initialize();
            animatorDriver.CurrentTime = this.SenseTime;
            animatorDriver.Pause();
            animatorDriver.Sample();
        }
        else
        {
            this.Animator.Initialize();
            animatorDriver.GoToStart();
        }
    }