Please add a low lever bool in Object class that can be overriden to prevent desired objects from being stored in database. can be a bool or method and have it effect OnStoreSave at a low level, allowing script exclusion with out 'mucking up' any highler level 'OnStoreSave' methods.
Description
Description
Details
Details
- Severity
- Feature
- Resolution
- Open
- Reproducibility
- N/A
- Operating System
- Windows 10 x64
- Category
- General
Steps To Reproduce
Example as follows..
bool m_CanBeSaved = true; bool CanBeSaved() { return m_CanBeSaved; } void SetCanBeSaved(bool state) { m_CanBeSaved = state; }