4e0e3c7904
* Fixed assert and added None behavior. Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * cleaned up file Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Switched over to checkboxes Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Fixed naming. Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Fixed naming Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Fixed serialize version and zero vector normalization Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Cleaned up format. Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com> * Fixed Warnings Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com>
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
namespace Camera
|
|
{
|
|
//////////////////////////////////////////////////////////////////////////
|
|
/// Pass this as the second argument when constructing an AZ::Crc32 to force
|
|
/// it to use the lower cased version of your string
|
|
static const bool s_forceCrcLowerCase = true;
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
/// These are intended to be used as an index and needs to be implicitly
|
|
/// convertible to int. See StartingPointCameraUtilities.h for examples
|
|
enum AxisOfRotation : int
|
|
{
|
|
X_Axis = 0,
|
|
Y_Axis = 1,
|
|
Z_Axis = 2
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
/// These are intended to be used as an index and needs to be implicitly
|
|
/// convertible to int. See StartingPointCameraUtilities.h for examples
|
|
enum RelativeAxisType : int
|
|
{
|
|
LeftRight = 0,
|
|
ForwardBackward = 1,
|
|
UpDown = 2,
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
/// These are intended to be used as an index and needs to be implicitly
|
|
/// convertible to int. See StartingPointCameraUtilities.h for examples
|
|
enum EulerAngleType : int
|
|
{
|
|
Pitch = 0,
|
|
Roll = 1,
|
|
Yaw = 2,
|
|
};
|
|
} //namespace Camera
|