1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * 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
- *
- */
- #include "FollowingCameraConfiguration.h"
- #include <AzCore/Serialization/EditContext.h>
- #include <AzCore/Serialization/EditContextConstants.inl>
- namespace ROS2
- {
- void FollowingCameraConfiguration::Reflect(AZ::ReflectContext* context)
- {
- if (AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serialize->Class<FollowingCameraConfiguration>()
- ->Version(1)
- ->Field("PredefinedViews", &FollowingCameraConfiguration::m_predefinedViews)
- ->Field("SmoothingLength", &FollowingCameraConfiguration::m_smoothingBuffer)
- ->Field("ZoomSpeed", &FollowingCameraConfiguration::m_zoomSpeed)
- ->Field("RotationSpeed", &FollowingCameraConfiguration::m_rotationSpeed)
- ->Field("DefaultView", &FollowingCameraConfiguration::m_defaultView);
- if (AZ::EditContext* ec = serialize->GetEditContext())
- {
- ec->Class<FollowingCameraConfiguration>("Follow Camera Configuration", "Configuration for the Following Camera Component")
- ->DataElement(
- AZ::Edit::UIHandlers::Default,
- &FollowingCameraConfiguration::m_smoothingBuffer,
- "Smoothing Length",
- "Number of past transforms used to smooth, larger value gives smoother result, but more lag")
- ->Attribute(AZ::Edit::Attributes::Min, 1)
- ->Attribute(AZ::Edit::Attributes::Max, 100)
- ->DataElement(
- AZ::Edit::UIHandlers::Default, &FollowingCameraConfiguration::m_zoomSpeed, "Zoom Speed", "Speed of zooming")
- ->DataElement(
- AZ::Edit::UIHandlers::Default,
- &FollowingCameraConfiguration::m_rotationSpeed,
- "Rotation Speed",
- "Rotation Speed around the target")
- ->DataElement(
- AZ::Edit::UIHandlers::Default, &FollowingCameraConfiguration::m_predefinedViews, "Views", "Views to follow")
- ->DataElement(
- AZ::Edit::UIHandlers::Default,
- &FollowingCameraConfiguration::m_defaultView,
- "Default View",
- "Default View to follow")
- ->Attribute(AZ::Edit::Attributes::Min, 0);
- }
- }
- }
- } // namespace ROS2
|