124 lines
1.6 KiB
C#
124 lines
1.6 KiB
C#
|
|
namespace ZXKFramework
|
|||
|
|
{
|
|||
|
|
public enum ResLoadType
|
|||
|
|
{
|
|||
|
|
Resources,
|
|||
|
|
StreamingAssets
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public enum SoundType
|
|||
|
|
{
|
|||
|
|
Base
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public enum ObjectPoolType
|
|||
|
|
{
|
|||
|
|
Base
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public enum FSMType
|
|||
|
|
{
|
|||
|
|
Base
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 实训-考核
|
|||
|
|
/// </summary>
|
|||
|
|
public enum ModeType
|
|||
|
|
{
|
|||
|
|
JiaoXue,
|
|||
|
|
ShiXun,
|
|||
|
|
KaoHe
|
|||
|
|
}
|
|||
|
|
//public enum UIManagerType
|
|||
|
|
//{
|
|||
|
|
// Base
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public enum QASystemType
|
|||
|
|
//{
|
|||
|
|
// Single
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public enum QuestionType
|
|||
|
|
//{
|
|||
|
|
// Single
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public enum UIGroup
|
|||
|
|
//{
|
|||
|
|
// BG,
|
|||
|
|
// Main,
|
|||
|
|
// Tip,
|
|||
|
|
// Top,
|
|||
|
|
// Score
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
public enum EventMangerType
|
|||
|
|
{
|
|||
|
|
Base
|
|||
|
|
}
|
|||
|
|
public enum PlatformType
|
|||
|
|
{
|
|||
|
|
PC,
|
|||
|
|
WebGL,
|
|||
|
|
Android
|
|||
|
|
}
|
|||
|
|
public enum OperatingType
|
|||
|
|
{
|
|||
|
|
FirstPerson,
|
|||
|
|
Hardware,
|
|||
|
|
Touch,
|
|||
|
|
VR
|
|||
|
|
}
|
|||
|
|
public enum LanguageType
|
|||
|
|
{
|
|||
|
|
Chinese,
|
|||
|
|
English
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//public enum AnimatorManagerType
|
|||
|
|
//{
|
|||
|
|
// Animator,
|
|||
|
|
// Animation
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
public enum IEnumeratorManagerType
|
|||
|
|
{
|
|||
|
|
Base
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//public enum HttpManagerType
|
|||
|
|
//{
|
|||
|
|
// Base
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
public enum SceneManagerType
|
|||
|
|
{
|
|||
|
|
Base,
|
|||
|
|
AssetsBundle
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//public enum SaveManagerType
|
|||
|
|
//{
|
|||
|
|
// PlayerPrefs,
|
|||
|
|
// Text
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public enum TipManagerType
|
|||
|
|
//{
|
|||
|
|
// Base,
|
|||
|
|
// None
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public enum TipTypeEnum
|
|||
|
|
//{
|
|||
|
|
// Tip,
|
|||
|
|
// TipOneBtn,
|
|||
|
|
// TipTwoBtn,
|
|||
|
|
// TipLit,
|
|||
|
|
// TipUP,
|
|||
|
|
// TipDown
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
}
|