OldBlueWater/BlueWater/Assets/Doozy/Runtime/UIManager/Enums/SlideDirection.cs
2023-08-02 15:08:03 +09:00

23 lines
738 B
C#

// Copyright (c) 2015 - 2023 Doozy Entertainment. All Rights Reserved.
// This code can only be used under the standard Unity Asset Store End User License Agreement
// A Copy of the EULA APPENDIX 1 is available at http://unity3d.com/company/legal/as_terms
namespace Doozy.Runtime.UIManager
{
/// <summary> Describes the directions a slider works </summary>
public enum SlideDirection
{
/// <summary> From the left to the right </summary>
LeftToRight,
/// <summary> From the right to the left </summary>
RightToLeft,
/// <summary> From the bottom to the top </summary>
BottomToTop,
/// <summary> From the top to the bottom </summary>
TopToBottom,
}
}