mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
17 lines
621 B
C#
17 lines
621 B
C#
using UnityEngine;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static int defaultAnimationClipLength = 600;
|
|
public static int minAnimationClipLength = 2;
|
|
public static int maxAnimationClipLength = 9999;
|
|
|
|
public static Color ColorWhite = new Color(1f, 1f, 1f);
|
|
public static Color ColorGreen = new Color(0f, 1f, 0f);
|
|
public static Color ColorGoldYellow = new Color(1f, 0.85f, 0f);
|
|
public static Color ColorGrey = new Color(0.5f, 0.5f, 0.5f);
|
|
public static Color ColorDarkGrey = new Color(0.2f, 0.2f, 0.2f);
|
|
}
|
|
}
|