replacing virtual function with default parameter with overloaded function

This commit is contained in:
greerdv
2021-05-06 15:11:11 +01:00
parent 368bf69ae6
commit 578cd47a0a
5 changed files with 22 additions and 6 deletions
@@ -269,6 +269,11 @@ namespace AZ
}
}
void DecalTextureArrayFeatureProcessor::SetDecalTransform(DecalHandle handle, const AZ::Transform& world)
{
SetDecalTransform(handle, world, AZ::Vector3::CreateOne());
}
void DecalTextureArrayFeatureProcessor::SetDecalTransform(DecalHandle handle, const AZ::Transform& world,
const AZ::Vector3& nonUniformScale)
{