From d39681a7674d15fb0739f8683775af84c631d913 Mon Sep 17 00:00:00 2001 From: greerdv Date: Fri, 11 Feb 2022 12:29:00 +0000 Subject: [PATCH] add deprecation notice to functions in BoxManipulatorRequests Signed-off-by: greerdv --- .../AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h index 359b92502e..0d6299f5d4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h @@ -26,6 +26,7 @@ namespace AzToolsFramework virtual AZ::Vector3 GetDimensions() = 0; //! Set the X/Y/Z dimensions of the box shape/collider. virtual void SetDimensions(const AZ::Vector3& dimensions) = 0; + // O3DE_DEPRECATION_NOTICE(GHI-7572) //! @deprecated Because non-uniform scale effects can be complex, it is recommended to separately use //! AZ::TransformBus::Events::GetWorldTM, AZ::NonUniformScaleRequests::GetScale and GetCurrentLocalTransform //! and combine their effects. @@ -36,6 +37,7 @@ namespace AzToolsFramework virtual AZ::Transform GetCurrentTransform() = 0; //! Get the transform of the box relative to the entity. virtual AZ::Transform GetCurrentLocalTransform() = 0; + // O3DE_DEPRECATION_NOTICE(GHI-7572) //! @deprecated Because non-uniform scale effects can be complex, it is recommended to separately use //! AZ::TransformBus::Events::GetWorldTM, AZ::NonUniformScaleRequests::GetScale and GetCurrentLocalTransform //! and combine their effects.