Merge pull request #480 from aws-lumberyard-dev/scripting/palette_fix

Removed BC Setters from showing up in the node palette
This commit is contained in:
Luis Sempé
2021-04-30 11:10:19 -07:00
committed by GitHub
@@ -556,14 +556,6 @@ namespace
categoryPath.append(displayName.c_str());
}
for (auto property : behaviorClass->m_properties)
{
if (property.second->m_setter)
{
RegisterMethod(nodePaletteModel, behaviorContext, categoryPath, behaviorClass, property.first, *property.second->m_setter, behaviorClass->IsMethodOverloaded(property.first));
}
}
for (auto methodIter : behaviorClass->m_methods)
{
if (!IsExplicitOverload(*methodIter.second))