Hi there;
I have a PropertyPanel and two different sets of PropertyComponent Array<>s. I want to display the related set of properties upon the users’ choice. However i get an acces violation when switching between sets. Actually the error occures when switching back to the set that has been set before.
Here is a code fragment that produces the violation:
PropertyPanel m_PropertiesPanel;
Array<PropertyComponent *> m_MulticastProperties;
m_PropertiesPanel.addProperties(m_MulticastProperties);
m_PropertiesPanel.clear();
m_PropertiesPanel.addProperties(m_MulticastProperties); // Crashes...
Thanks for the consideration.
