Elin Modding Docs Doc
Loading...
Searching...
No Matches
SceneProfile.cs
1using System;
3using UnityEngine;
4
5// Token: 0x02000170 RID: 368
6public class SceneProfile : ScriptableObject
7{
8 // Token: 0x06000AC3 RID: 2755 RVA: 0x000426B5 File Offset: 0x000408B5
9 public static SceneProfile Load(string id)
10 {
11 return ResourceCache.Load<SceneProfile>("Scene/Profile/SceneProfile_" + id);
12 }
13
14 // Token: 0x040009D7 RID: 2519
15 public SceneGlobalProfile global;
16
17 // Token: 0x040009D8 RID: 2520
18 public OverlayProfile overlay;
19
20 // Token: 0x040009D9 RID: 2521
21 public SceneLightProfile light;
22
23 // Token: 0x040009DA RID: 2522
24 public SceneColorProfile color;
25
26 // Token: 0x040009DB RID: 2523
27 public Material matOverlay;
28
29 // Token: 0x040009DC RID: 2524
30 public Material matGrading;
31}