mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-15 16:04:44 +01:00
16 lines
205 B
C#
16 lines
205 B
C#
namespace MoleMole
|
|
{
|
|
public enum E_IslandCameraState
|
|
{
|
|
Swipe = 0,
|
|
Damping = 1,
|
|
ToLanded = 2,
|
|
ToFocus = 3,
|
|
BackToLanded = 4,
|
|
Focusing = 5,
|
|
BackToBase = 6,
|
|
DragBack = 7,
|
|
Landing = 8
|
|
}
|
|
}
|