Files
2026-06-04 11:42:34 +02:00

1600 lines
48 KiB
C#

using System;
using System.Collections;
using UnityEngine;
using Valve.VR;
// Token: 0x02001189 RID: 4489
public class CameraFade : SingletonMonoBehaviour<CameraFade>
{
// Token: 0x060263AA RID: 156586 RVA: 0x00A992A8 File Offset: 0x00A974A8
protected virtual void LMAJMHGEPDB()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263AB RID: 156587 RVA: 0x00A992BC File Offset: 0x00A974BC
public bool DCAPBLLNPFG()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263AC RID: 156588 RVA: 0x00A992CC File Offset: 0x00A974CC
protected virtual void JLHHADIPOED()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263AD RID: 156589 RVA: 0x00A992E0 File Offset: 0x00A974E0
public bool CHHAMMHEMFH()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x060263AE RID: 156590 RVA: 0x00A992F0 File Offset: 0x00A974F0
public bool MJDKPBECMKF()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263AF RID: 156591 RVA: 0x00A99300 File Offset: 0x00A97500
protected virtual void IBGMECCOGML()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263B0 RID: 156592 RVA: 0x00A99314 File Offset: 0x00A97514
public float NJGNIGCOPAH()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263B1 RID: 156593 RVA: 0x00A99324 File Offset: 0x00A97524
protected virtual void DHKOHMJLFCA()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263B2 RID: 156594 RVA: 0x00A99338 File Offset: 0x00A97538
public float IAKBJCAPCHK()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263B3 RID: 156595 RVA: 0x00A99348 File Offset: 0x00A97548
public float AMNHCAFLIPA()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263B4 RID: 156596 RVA: 0x00A99358 File Offset: 0x00A97558
protected virtual void CHOLLIANPAL()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263B5 RID: 156597 RVA: 0x00A9936C File Offset: 0x00A9756C
public float NKIEKNECJPM()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263B6 RID: 156598 RVA: 0x00A9937C File Offset: 0x00A9757C
public float IAIMODNAIEC()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263B7 RID: 156599 RVA: 0x00A9938C File Offset: 0x00A9758C
protected virtual void JFFLHAMMGAH()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263B8 RID: 156600 RVA: 0x00A993A0 File Offset: 0x00A975A0
public bool NJBBDHBLPKM()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263B9 RID: 156601 RVA: 0x00A993B0 File Offset: 0x00A975B0
public Coroutine INPIIDPGGCN(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.DIPHHOAKBCP(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263BA RID: 156602 RVA: 0x00A993E8 File Offset: 0x00A975E8
public float EIDPFLJMMDJ()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263BB RID: 156603 RVA: 0x00A993F8 File Offset: 0x00A975F8
private IEnumerator FKKPDCIODFP(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263BC RID: 156604 RVA: 0x00A99430 File Offset: 0x00A97630
private IEnumerator PMABJCJNMIP(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263BD RID: 156605 RVA: 0x00A99468 File Offset: 0x00A97668
public Coroutine CJFONBEFFEO(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.BDIOJDPKEBK(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263BE RID: 156606 RVA: 0x00A994A0 File Offset: 0x00A976A0
public Coroutine KMDHNHPAHAE(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.LONJFAKLEAL(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263BF RID: 156607 RVA: 0x00A994D8 File Offset: 0x00A976D8
private IEnumerator JPCECBEDJML(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263C0 RID: 156608 RVA: 0x00A99510 File Offset: 0x00A97710
public float OMFPIOFBNPM()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263C1 RID: 156609 RVA: 0x00A99520 File Offset: 0x00A97720
public float MEDIOFIDFPM()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x17001166 RID: 4454
// (get) Token: 0x060263C2 RID: 156610 RVA: 0x00A99530 File Offset: 0x00A97730
public float PBIEEPJMFMK
{
get
{
return this.fadeOutDelay + this.fadeOutDuration;
}
}
// Token: 0x060263C3 RID: 156611 RVA: 0x00A99540 File Offset: 0x00A97740
public Coroutine OFAMAJBCOHG(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.LONJFAKLEAL(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263C4 RID: 156612 RVA: 0x00A99578 File Offset: 0x00A97778
private IEnumerator IDFDAODKKNN(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263C5 RID: 156613 RVA: 0x00A995B0 File Offset: 0x00A977B0
public float JINPANPPDHM()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263C7 RID: 156615 RVA: 0x00A995F4 File Offset: 0x00A977F4
public float ENFEPBOENFO()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263C8 RID: 156616 RVA: 0x00A99604 File Offset: 0x00A97804
private IEnumerator BDIOJDPKEBK(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263C9 RID: 156617 RVA: 0x00A9963C File Offset: 0x00A9783C
public float CAIBOEPIPLK()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263CA RID: 156618 RVA: 0x00A9964C File Offset: 0x00A9784C
protected virtual void OFOPHGFIAJM()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263CB RID: 156619 RVA: 0x00A99660 File Offset: 0x00A97860
public float EKLDOOLEEBL()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263CC RID: 156620 RVA: 0x00A99670 File Offset: 0x00A97870
public bool CKMCIFANPOP()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x060263CD RID: 156621 RVA: 0x00A99680 File Offset: 0x00A97880
public float HKBGBIEHCIP()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263CE RID: 156622 RVA: 0x00A99690 File Offset: 0x00A97890
private IEnumerator FGMNFFEABOO(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263CF RID: 156623 RVA: 0x00A996C8 File Offset: 0x00A978C8
protected override void GHFAJDCMJAK()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263D0 RID: 156624 RVA: 0x00A996DC File Offset: 0x00A978DC
public float KKBBCHGMNKI()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263D1 RID: 156625 RVA: 0x00A996EC File Offset: 0x00A978EC
public Coroutine Fade(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.DIPHHOAKBCP(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263D2 RID: 156626 RVA: 0x00A99724 File Offset: 0x00A97924
public bool EBOEHIPHCDJ()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x17001167 RID: 4455
// (get) Token: 0x060263D3 RID: 156627 RVA: 0x00A99734 File Offset: 0x00A97934
public bool MMDGBNPFOBJ
{
get
{
return this.PGIINJPLLAP != null;
}
}
// Token: 0x060263D4 RID: 156628 RVA: 0x00A99744 File Offset: 0x00A97944
public Coroutine MEHNGHCPFHD(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.LONJFAKLEAL(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263D5 RID: 156629 RVA: 0x00A9977C File Offset: 0x00A9797C
protected virtual void NAKGPJKLHDF()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263D6 RID: 156630 RVA: 0x00A99790 File Offset: 0x00A97990
public float DMAAGJHMGCF()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263D7 RID: 156631 RVA: 0x00A997A0 File Offset: 0x00A979A0
protected virtual void ONOHBEONIKM()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263D8 RID: 156632 RVA: 0x00A997B4 File Offset: 0x00A979B4
public float NKDDJNMDCFH()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263D9 RID: 156633 RVA: 0x00A997C4 File Offset: 0x00A979C4
public Coroutine LNJHBMFAIKD(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.FKKPDCIODFP(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263DA RID: 156634 RVA: 0x00A997FC File Offset: 0x00A979FC
public bool BOAOLEMALNH()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x060263DB RID: 156635 RVA: 0x00A9980C File Offset: 0x00A97A0C
public float BADINDNOFDE()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263DC RID: 156636 RVA: 0x00A9981C File Offset: 0x00A97A1C
protected virtual void GCOFOGPIJJA()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263DD RID: 156637 RVA: 0x00A99830 File Offset: 0x00A97A30
private IEnumerator DIPHHOAKBCP(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263DE RID: 156638 RVA: 0x00A99868 File Offset: 0x00A97A68
protected virtual void ONKCFGIOGCF()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263DF RID: 156639 RVA: 0x00A9987C File Offset: 0x00A97A7C
public float MPGAMDJDEKG()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263E0 RID: 156640 RVA: 0x00A9988C File Offset: 0x00A97A8C
public Coroutine NDIGKIMDIHO(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.JPCECBEDJML(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263E1 RID: 156641 RVA: 0x00A998C4 File Offset: 0x00A97AC4
public float NIAKPFNHCOA()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263E2 RID: 156642 RVA: 0x00A998D4 File Offset: 0x00A97AD4
public float BDFPCNODLIA()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263E3 RID: 156643 RVA: 0x00A998E4 File Offset: 0x00A97AE4
private IEnumerator JKMNJPJCLMO(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263E4 RID: 156644 RVA: 0x00A9991C File Offset: 0x00A97B1C
protected virtual void DFBDHMKDJOB()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263E5 RID: 156645 RVA: 0x00A99930 File Offset: 0x00A97B30
protected virtual void EEFJBLAIGBP()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263E6 RID: 156646 RVA: 0x00A99944 File Offset: 0x00A97B44
private IEnumerator BLLBFPLLEJE(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263E7 RID: 156647 RVA: 0x00A9997C File Offset: 0x00A97B7C
private IEnumerator KIEHIJNOGOG(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263E8 RID: 156648 RVA: 0x00A999B4 File Offset: 0x00A97BB4
public float HBOELKKPBLH()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263E9 RID: 156649 RVA: 0x00A999C4 File Offset: 0x00A97BC4
public Coroutine MIDPCGMGLOP(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.BMOKLDGAKAE(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263EA RID: 156650 RVA: 0x00A999FC File Offset: 0x00A97BFC
public float EJIPGCAKAIG()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263EB RID: 156651 RVA: 0x00A99A0C File Offset: 0x00A97C0C
protected virtual void CLGGCAGCLKP()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x060263EC RID: 156652 RVA: 0x00A99A20 File Offset: 0x00A97C20
public bool LOBKGOGIPIP()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263ED RID: 156653 RVA: 0x00A99A30 File Offset: 0x00A97C30
public float HHMFDHHINKK()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263EE RID: 156654 RVA: 0x00A99A40 File Offset: 0x00A97C40
public bool FAEGKGIBPON()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263EF RID: 156655 RVA: 0x00A99A50 File Offset: 0x00A97C50
public float GOJPPPFKIJD()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263F0 RID: 156656 RVA: 0x00A99A60 File Offset: 0x00A97C60
public Coroutine PLDMFKJFPCH(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.BDIOJDPKEBK(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263F1 RID: 156657 RVA: 0x00A99A98 File Offset: 0x00A97C98
public Coroutine MOJEIMCOCAD(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.FGMNFFEABOO(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x060263F2 RID: 156658 RVA: 0x00A99AD0 File Offset: 0x00A97CD0
private IEnumerator BIAOAKFMBHP(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263F3 RID: 156659 RVA: 0x00A99B08 File Offset: 0x00A97D08
public bool PIDGBFJAHAL()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x060263F4 RID: 156660 RVA: 0x00A99B18 File Offset: 0x00A97D18
private IEnumerator BMOKLDGAKAE(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263F5 RID: 156661 RVA: 0x00A99B50 File Offset: 0x00A97D50
public float DDLNCOBOFEJ()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263F6 RID: 156662 RVA: 0x00A99B60 File Offset: 0x00A97D60
public bool OOHMCEMGCAD()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263F7 RID: 156663 RVA: 0x00A99B70 File Offset: 0x00A97D70
public bool BIKFPFDFHIL()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x060263F8 RID: 156664 RVA: 0x00A99B80 File Offset: 0x00A97D80
public bool HKEDGNMOGCA()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263F9 RID: 156665 RVA: 0x00A99B90 File Offset: 0x00A97D90
public float KDLGMCJNIAJ()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263FA RID: 156666 RVA: 0x00A99BA0 File Offset: 0x00A97DA0
public float DHGNFAMADBC()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263FB RID: 156667 RVA: 0x00A99BB0 File Offset: 0x00A97DB0
public bool BIHFPJFAAHL()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x060263FC RID: 156668 RVA: 0x00A99BC0 File Offset: 0x00A97DC0
public float ECLAMFAFPNK()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x060263FD RID: 156669 RVA: 0x00A99BD0 File Offset: 0x00A97DD0
private IEnumerator PLGALFLEKHB(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x060263FE RID: 156670 RVA: 0x00A99C08 File Offset: 0x00A97E08
public float KFDFDKMHNAF()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x060263FF RID: 156671 RVA: 0x00A99C18 File Offset: 0x00A97E18
public bool AHAIHGOMAPI()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x06026400 RID: 156672 RVA: 0x00A99C28 File Offset: 0x00A97E28
public bool GLGGMKNBLCJ()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x06026401 RID: 156673 RVA: 0x00A99C38 File Offset: 0x00A97E38
private IEnumerator EGAAOPNMHEC(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x06026402 RID: 156674 RVA: 0x00A99C70 File Offset: 0x00A97E70
public float JOGOFILKILB()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x06026403 RID: 156675 RVA: 0x00A99C80 File Offset: 0x00A97E80
public float PCJNIKGDFMP()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x06026404 RID: 156676 RVA: 0x00A99C90 File Offset: 0x00A97E90
protected virtual void AHLMADACOLB()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x06026405 RID: 156677 RVA: 0x00A99CA4 File Offset: 0x00A97EA4
public Coroutine LKFBHDEHCOE(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.JPCECBEDJML(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x06026406 RID: 156678 RVA: 0x00A99CDC File Offset: 0x00A97EDC
public float PFFBIMIBJGO()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x06026407 RID: 156679 RVA: 0x00A99CEC File Offset: 0x00A97EEC
protected virtual void GJGEACMGLKP()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x06026408 RID: 156680 RVA: 0x00A99D00 File Offset: 0x00A97F00
private IEnumerator LONJFAKLEAL(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x06026409 RID: 156681 RVA: 0x00A99D38 File Offset: 0x00A97F38
private IEnumerator EJDDFKOHFNA(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x0602640A RID: 156682 RVA: 0x00A99D70 File Offset: 0x00A97F70
private IEnumerator BCGAEEOHKNB(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x0602640B RID: 156683 RVA: 0x00A99DA8 File Offset: 0x00A97FA8
public bool ENHPOEOGAKH()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x0602640C RID: 156684 RVA: 0x00A99DB8 File Offset: 0x00A97FB8
private IEnumerator EJPAPAELKID(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x0602640D RID: 156685 RVA: 0x00A99DF0 File Offset: 0x00A97FF0
public float KBKIMHKJJMA()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x0602640E RID: 156686 RVA: 0x00A99E00 File Offset: 0x00A98000
public Coroutine BKAJDCKLCGM(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.BLLBFPLLEJE(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x0602640F RID: 156687 RVA: 0x00A99E38 File Offset: 0x00A98038
public float HJLAPAOMBIK()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x06026410 RID: 156688 RVA: 0x00A99E48 File Offset: 0x00A98048
public float LNJEBLIBAKJ()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x06026411 RID: 156689 RVA: 0x00A99E58 File Offset: 0x00A98058
public float POPGKOABCMA()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x06026412 RID: 156690 RVA: 0x00A99E68 File Offset: 0x00A98068
protected override void OKGGDGJIPAM()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x06026413 RID: 156691 RVA: 0x00A99E7C File Offset: 0x00A9807C
public Coroutine OHIDCMEPKNC(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.FGMNFFEABOO(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x06026414 RID: 156692 RVA: 0x00A99EB4 File Offset: 0x00A980B4
public float HLAGJPONFAI()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x17001165 RID: 4453
// (get) Token: 0x06026415 RID: 156693 RVA: 0x00A99EC4 File Offset: 0x00A980C4
public float DOLNFIDCNOH
{
get
{
return this.fadeInDelay + this.fadeInDuration;
}
}
// Token: 0x06026416 RID: 156694 RVA: 0x00A99ED4 File Offset: 0x00A980D4
public float GKEFDFIBEAL()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x06026417 RID: 156695 RVA: 0x00A99EE4 File Offset: 0x00A980E4
public bool AJLLPLIBFCD()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x06026418 RID: 156696 RVA: 0x00A99EF4 File Offset: 0x00A980F4
public Coroutine HCPPDBMGLIH(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.PLGALFLEKHB(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x06026419 RID: 156697 RVA: 0x00A99F2C File Offset: 0x00A9812C
protected override void Awake()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x0602641A RID: 156698 RVA: 0x00A99F40 File Offset: 0x00A98140
public bool GNKDGOAOBBE()
{
return this.PGIINJPLLAP == null;
}
// Token: 0x0602641B RID: 156699 RVA: 0x00A99F50 File Offset: 0x00A98150
public Coroutine DFHODGCIMMN(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.BIAOAKFMBHP(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x0602641C RID: 156700 RVA: 0x00A99F88 File Offset: 0x00A98188
public Coroutine IPPJNODJKIK(bool MHJAAGAOLNG, bool JJIACNOGAEC = false, bool GFIDPGDLHFC = false, float ECJHMKNHEJG = 0f)
{
if (this.PGIINJPLLAP != null)
{
base.StopCoroutine(this.PGIINJPLLAP);
}
this.PGIINJPLLAP = base.StartCoroutine(this.FGMNFFEABOO(MHJAAGAOLNG, JJIACNOGAEC, GFIDPGDLHFC, ECJHMKNHEJG));
return this.PGIINJPLLAP;
}
// Token: 0x0602641D RID: 156701 RVA: 0x00A99FC0 File Offset: 0x00A981C0
protected virtual void KNDCMAMOONE()
{
base.Awake();
this.OMPGIOOBKCK = base.GetComponentInChildren<FadeImageEffect>();
}
// Token: 0x0602641E RID: 156702 RVA: 0x00A99FD4 File Offset: 0x00A981D4
public float NMEMGOAEOBF()
{
return this.fadeInDelay + this.fadeInDuration;
}
// Token: 0x0602641F RID: 156703 RVA: 0x00A99FE4 File Offset: 0x00A981E4
private IEnumerator ILMPGPHMNNG(bool MHJAAGAOLNG, bool JJIACNOGAEC, bool GFIDPGDLHFC, float ECJHMKNHEJG)
{
if (!GFIDPGDLHFC)
{
this.effect.StopEffect();
this.effect.PlayEffect(MHJAAGAOLNG, null, null, true);
if (this.RezInAudio.audioClip != null && this.RezOutAudio.audioClip != null)
{
AudioManager.Play2DSFX((!MHJAAGAOLNG) ? this.RezOutAudio : this.RezInAudio);
}
}
if (MHJAAGAOLNG)
{
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(false);
}
yield return new WaitForSeconds(this.fadeInDelay);
if (PONCCGLALMO.GCFINLENMEI != null && this.MKLDFFFJFPC)
{
this.MKLDFFFJFPC = false;
}
yield return this.OMPGIOOBKCK.FadeIn((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeInDuration);
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = false;
}
else
{
SingletonMonoBehaviour<AnimateInOutManager>.NCKMBFBMBFM.SuppressAnimations = true;
if (!GFIDPGDLHFC)
{
yield return new WaitForSeconds(this.fadeOutDelay);
}
yield return this.OMPGIOOBKCK.FadeOut((ECJHMKNHEJG != 0f) ? ECJHMKNHEJG : this.fadeOutDuration);
if (JJIACNOGAEC && PONCCGLALMO.GCFINLENMEI != null)
{
PONCCGLALMO.GCFINLENMEI.DBKJCOHPLOC(true);
this.MKLDFFFJFPC = true;
}
}
this.PGIINJPLLAP = null;
yield break;
}
// Token: 0x06026420 RID: 156704 RVA: 0x00A9A01C File Offset: 0x00A9821C
public bool EMFCKPNEBIA()
{
return this.PGIINJPLLAP != null;
}
// Token: 0x06026421 RID: 156705 RVA: 0x00A9A02C File Offset: 0x00A9822C
public float FGKOALBODLF()
{
return this.fadeOutDelay + this.fadeOutDuration;
}
// Token: 0x0400607E RID: 24702
[SerializeField]
private float fadeOutDelay = 0.4f;
// Token: 0x0400607F RID: 24703
[SerializeField]
private float fadeInDelay = 0.4f;
// Token: 0x04006080 RID: 24704
[SerializeField]
private float fadeOutDuration = 1f;
// Token: 0x04006081 RID: 24705
[SerializeField]
private float fadeInDuration = 0.25f;
// Token: 0x04006082 RID: 24706
[SerializeField]
private AnimateInOut effect;
// Token: 0x04006083 RID: 24707
[Header("Audio")]
[SerializeField]
private RecRoomAudioClip RezOutAudio;
// Token: 0x04006084 RID: 24708
[SerializeField]
private RecRoomAudioClip RezInAudio;
// Token: 0x04006085 RID: 24709
private FadeImageEffect OMPGIOOBKCK;
// Token: 0x04006086 RID: 24710
private Coroutine PGIINJPLLAP;
// Token: 0x04006087 RID: 24711
private bool MKLDFFFJFPC;
}