Elin Modding Docs Doc
Loading...
Searching...
No Matches
DramaPropOnev.cs
1using System;
2using DG.Tweening;
3using UnityEngine;
4
5// Token: 0x0200011B RID: 283
6public class DramaPropOnev : DramaProp
7{
8 // Token: 0x060007A6 RID: 1958 RVA: 0x00031ABC File Offset: 0x0002FCBC
9 public override void OnEnter()
10 {
11 this.sr.DOFade(1f, 2f).From(0f, true, false);
12 this.mat.DOFade(1f, 2f).From(0f, true, false);
13 }
14
15 // Token: 0x060007A7 RID: 1959 RVA: 0x00031B0D File Offset: 0x0002FD0D
16 public override void OnLeave()
17 {
18 this.sr.DOFade(0f, 2f);
19 this.mat.DOFade(0f, 2f);
20 }
21
22 // Token: 0x040007AF RID: 1967
23 public Material mat;
24}