scripts
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Serialization;
|
||||
using UnityEngine.UI;
|
||||
|
||||
// Token: 0x020011D3 RID: 4563
|
||||
[Serializable]
|
||||
public class ButtonPaletteBlock : ScriptableObject
|
||||
{
|
||||
// Token: 0x0400622E RID: 25134
|
||||
[Header("Shared")]
|
||||
public ColorBlock SelectionColorModifiers = ColorBlock.defaultColorBlock;
|
||||
|
||||
// Token: 0x0400622F RID: 25135
|
||||
[Header("Palettes")]
|
||||
public ButtonPaletteBlock.ButtonPalette[] paletteBlock = new ButtonPaletteBlock.ButtonPalette[0];
|
||||
|
||||
// Token: 0x020011D4 RID: 4564
|
||||
[Serializable]
|
||||
public class ButtonPalette
|
||||
{
|
||||
// Token: 0x04006230 RID: 25136
|
||||
public string name = string.Empty;
|
||||
|
||||
// Token: 0x04006231 RID: 25137
|
||||
[FormerlySerializedAs("BGColor")]
|
||||
public Color BaseColor = Color.white;
|
||||
|
||||
// Token: 0x04006232 RID: 25138
|
||||
public Color ToggleColor = new Color(0.0902f, 1f, 1f, 1f);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user