Renamed 'key' to 'base' to avoid future problems with secrets patterns, cleanup and improvements

Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com>
This commit is contained in:
lsemp3d
2021-11-23 08:50:41 -08:00
parent 9e6e83ff7f
commit 2da3ab42fd
21 changed files with 74 additions and 172 deletions
@@ -335,7 +335,7 @@ namespace ScriptCanvasEditor::Nodes
AZStd::string updatedMethodName = methodName;
if (isAccessor)
{
if (methodNode->GetMethodType() == ScriptCanvas::MethodType::Getter)
if (methodNode->GetMethodType() == ScriptCanvas::MethodType::Getter || methodNode->GetMethodType() == ScriptCanvas::MethodType::Free)
{
updatedMethodName = "Get";
}
@@ -351,7 +351,7 @@ namespace ScriptCanvasEditor::Nodes
if (methodDetails.m_subtitle.empty())
{
methodDetails.m_subtitle = details.m_name;
methodDetails.m_subtitle = details.m_category;
}
// Add to the tooltip the C++ class for reference