@ -578,6 +578,14 @@ 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))
@ -184,7 +184,7 @@ namespace ScriptCanvas
int GetSortPriority() const;
static const char* s_InitialValueSourceNames[VariableFlags::InitialValueSource::COUNT];
static const char* GraphVariable::s_ScopeNames[VariableFlags::Scope::COUNT];
static const char* GraphVariable::s_ScopeNames[static_cast<int>(VariableFlags::Scope::COUNT)];
private: