Gems/PhysX
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -144,7 +144,7 @@ namespace PhysX
|
||||
void OnDeselected() override;
|
||||
|
||||
// DisplayCallback
|
||||
void Display(AzFramework::DebugDisplayRequests& debugDisplay) const;
|
||||
void Display(AzFramework::DebugDisplayRequests& debugDisplay) const override;
|
||||
void DisplayMeshCollider(AzFramework::DebugDisplayRequests& debugDisplay) const;
|
||||
void DisplayUnscaledPrimitiveCollider(AzFramework::DebugDisplayRequests& debugDisplay) const;
|
||||
void DisplayScaledPrimitiveCollider(AzFramework::DebugDisplayRequests& debugDisplay) const;
|
||||
|
||||
@@ -129,7 +129,7 @@ namespace PhysX
|
||||
void OnShapeChanged(LmbrCentral::ShapeComponentNotifications::ShapeChangeReasons changeReason) override;
|
||||
|
||||
// DisplayCallback
|
||||
void Display(AzFramework::DebugDisplayRequests& debugDisplay) const;
|
||||
void Display(AzFramework::DebugDisplayRequests& debugDisplay) const override;
|
||||
|
||||
// ColliderShapeRequestBus
|
||||
AZ::Aabb GetColliderShapeAabb() override;
|
||||
|
||||
@@ -108,7 +108,7 @@ namespace PhysX
|
||||
// CharacterControllerRequestBus
|
||||
void Resize(float height) override;
|
||||
float GetHeight() override;
|
||||
void SetHeight(float height);
|
||||
void SetHeight(float height) override;
|
||||
float GetRadius() override;
|
||||
void SetRadius(float radius) override;
|
||||
float GetHalfSideExtent() override;
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace PhysX
|
||||
// AZ::AssetTypeInfoBus
|
||||
AZ::Data::AssetType GetAssetType() const override;
|
||||
void GetAssetTypeExtensions(AZStd::vector<AZStd::string>& extensions) override;
|
||||
const char* GetAssetTypeDisplayName() const;
|
||||
const char* GetAssetTypeDisplayName() const override;
|
||||
const char* GetBrowserIcon() const override;
|
||||
const char* GetGroup() const override;
|
||||
AZ::Uuid GetComponentTypeId() const override;
|
||||
|
||||
@@ -48,7 +48,7 @@ namespace PhysX
|
||||
// AZ::AssetTypeInfoBus
|
||||
AZ::Data::AssetType GetAssetType() const override;
|
||||
void GetAssetTypeExtensions(AZStd::vector<AZStd::string>& extensions) override;
|
||||
const char* GetAssetTypeDisplayName() const;
|
||||
const char* GetAssetTypeDisplayName() const override;
|
||||
const char* GetBrowserIcon() const override;
|
||||
const char* GetGroup() const override;
|
||||
AZ::Uuid GetComponentTypeId() const override;
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace UnitTest
|
||||
m_componentModeDelegate.Disconnect();
|
||||
}
|
||||
|
||||
void SetColliderOffset(const AZ::Vector3& offset) { m_offset = offset; }
|
||||
void SetColliderOffset(const AZ::Vector3& offset) override { m_offset = offset; }
|
||||
AZ::Vector3 GetColliderOffset() override { return m_offset; }
|
||||
void SetColliderRotation(const AZ::Quaternion& rotation) override { m_rotation = rotation; }
|
||||
AZ::Quaternion GetColliderRotation() override { return m_rotation; }
|
||||
|
||||
Reference in New Issue
Block a user