Page MenuHomeFeedback Tracker

Addition: Add CanBeSaved bool
Assigned, UrgentPublic

Description

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.

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;
}

Event Timeline

Zedmag created this task.Dec 27 2022, 6:16 AM
Geez changed the task status from New to Assigned.Jan 4 2023, 11:07 AM