Skip to content

Commit

Permalink
Update CameraMode.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
fcolarich committed Nov 19, 2024
1 parent 2db184c commit af09441
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Explorer/Assets/DCL/Character/CharacterCamera/CameraMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
{
public enum CameraMode : byte
{
Unknown = 0,
FirstPerson = 1,
ThirdPerson = 2,
DroneView = 3,
SDKCamera = 4,
FirstPerson = 0,
ThirdPerson = 1,
DroneView = 2,
SDKCamera = 3,

/// <summary>
/// Free-fly, does not follow character, intercepts controls designated for character movement
/// </summary>
Free = 5,
Free = 4,
}
}

0 comments on commit af09441

Please sign in to comment.