// Animancer // Copyright 2020 Kybernetik //
namespace Animancer
{
/// Various string constants used throughout Animancer.
public static class Strings
{
/************************************************************************************************************************/
/// The standard prefix for .
public const string MenuPrefix = "Animancer/";
///
/// The base value for to group
/// "Assets/Create/Animancer/..." menu items just under "Avatar Mask".
///
public const int AssetMenuOrder = 410;
/************************************************************************************************************************/
/// The URL of the website where the Animancer documentation is hosted.
public const string DocumentationURL = "https://kybernetik.com.au/animancer";
/// The URL of the website where the Animancer API documentation is hosted.
public const string APIDocumentationURL = DocumentationURL + "/api/Animancer";
/// The email address which handles support for Animancer.
public const string DeveloperEmail = "animancer@kybernetik.com.au";
/************************************************************************************************************************/
/// The conditional compilation symbol for editor-only code.
public const string EditorOnly = "UNITY_EDITOR";
/// The conditional compilation symbol for assertions.
public const string Assert = "UNITY_ASSERTIONS";
/************************************************************************************************************************/
/// [Internal]
/// A prefix for tooltips on Pro-Only features.
///
/// "[Pro-Only] " in Animancer Lite or "" in Animancer Pro.
///
internal const string ProOnlyTag = "";
/************************************************************************************************************************/
#if UNITY_EDITOR
/************************************************************************************************************************/
/// [Editor-Only] URLs of various documentation pages.
public static class DocsURLs
{
/************************************************************************************************************************/
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member.
/************************************************************************************************************************/
public const string DocsURL = DocumentationURL + "/docs/";
public const string AnimatorControllers = DocsURL + "manual/animator-controllers";
public const string Fading = DocsURL + "manual/blending/fading";
public const string AnimationTypes = DocsURL + "manual/playing/inspector#animation-types";
public const string EndEvents = DocsURL + "manual/events/end";
public const string UpdateModes = DocsURL + "bugs/update-modes";
public const string ChangeLogPrefix = DocsURL + "changes/animancer-";
/************************************************************************************************************************/
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member.
/************************************************************************************************************************/
}
/************************************************************************************************************************/
#endif
/************************************************************************************************************************/
}
}