AK056/Assets/GameLogic/Origin/device/stacker/StackerForkCargoEnum.cs
2025-05-09 15:40:34 +08:00

32 lines
532 B
C#

using Sirenix.OdinInspector;
/// <summary>
/// 堆垛机探货光电
/// </summary>
[System.Serializable]
public enum StackerForkCargoEnum
{
/// <summary>
/// 左浅有货
/// </summary>
[LabelText("左浅有货")]LeftShallow = 0,
/// <summary>
/// 原位有货
/// </summary>
ForkCargo = 1,
/// <summary>
/// 右浅有货
/// </summary>
RightShallow = 2,
/// <summary>
/// 左深有货
/// </summary>
LeftDeep = 4,
/// <summary>
/// 右深有货
/// </summary>
RightDeep = 3,
}