Removed BC Setters from showing up in the node palette

This commit is contained in:
luissemp
2021-04-30 09:35:41 -07:00
parent 70d53f117f
commit ab5ffc7604
@@ -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))