improve wording for all PhysX gem tooltips apart from pipeline, fixes 3898

Signed-off-by: greerdv <greerdv@amazon.com>
This commit is contained in:
greerdv
2021-10-14 16:06:13 +01:00
parent 922a991443
commit ec10bb078e
21 changed files with 174 additions and 147 deletions
@@ -54,17 +54,17 @@ namespace PhysX
if (AZ::EditContext* editContext = serialize->GetEditContext())
{
editContext->Class<PhysX::WindConfiguration>("Wind Configuration", "Wind settings for PhysX")
editContext->Class<PhysX::WindConfiguration>("Wind Configuration", "Wind force entity tags.")
->ClassElement(AZ::Edit::ClassElements::EditorData, "")
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
->DataElement(AZ::Edit::UIHandlers::Default, &WindConfiguration::m_globalWindTag,
"Global wind tag",
"Tag value that will be used to mark entities that provide global wind value.\n"
"Global wind has no bounds and affects objects across entire level.")
"Global wind provider tags.\n"
"Global winds apply to entire world.")
->DataElement(AZ::Edit::UIHandlers::Default, &WindConfiguration::m_localWindTag,
"Local wind tag",
"Tag value that will be used to mark entities that provide local wind value.\n"
"Local wind is only applied within bounds defined by PhysX collider.")
"Local wind provider tags.\n"
"Local winds are constrained to a PhysX collider's boundaries.")
;
}
}