add a docsURL; macro to link a given set of script config vars to git or similar storage urls via clicking on the inspector

This commit is contained in:
AzaezelX 2023-01-27 01:13:15 -06:00
parent a0bbe0ec18
commit f5a34308f9
382 changed files with 588 additions and 130 deletions

View file

@ -62,6 +62,7 @@ UndoAction::~UndoAction()
//-----------------------------------------------------------------------------
void UndoAction::initPersistFields()
{
docsURL;
addField("actionName", TypeRealString, Offset(mActionName, UndoAction),
"A brief description of the action, for UI representation of this undo/redo action.");
@ -185,6 +186,7 @@ UndoManager::~UndoManager()
//-----------------------------------------------------------------------------
void UndoManager::initPersistFields()
{
docsURL;
addField("numLevels", TypeS32, Offset(mNumLevels, UndoManager), "Number of undo & redo levels.");
// arrange for the default undo manager to exist.
// UndoManager &def = getDefaultManager();