Conversions

Commit from Azaezel to fix the naming of inspector fields.
TypeMatrixField still messes around on first responder, we know these functions convert angAxis to eul properly and from eul to angAxis but when the data comes to TypeMatrix it changes.... weird issue is weird.
This commit is contained in:
marauder2k7 2023-06-11 21:59:03 +01:00
parent 92920dbcd9
commit cbe2bd4c7b
7 changed files with 146 additions and 53 deletions

View file

@ -110,7 +110,7 @@ void EditManager::editorDisabled()
for(SimGroupIterator itr(Sim::getRootGroup()); *itr; ++itr)
{
SimObject *so = *itr;
AssertFatal(so->isProperlyAdded() && !so->isRemoved(), "bad");
AssertFatal(so->isProperlyAdded() && !so->isRemoved(), avar("%s added but not removed!", so->getName()));
so->onEditorDisable();
}
@ -161,4 +161,4 @@ DefineEngineMethod( EditManager, editorDisabled, void, (), , "Perform the onEdit
DefineEngineMethod( EditManager, isEditorEnabled, bool, (), , "Return the value of gEditingMission." )
{
return gEditingMission;
}
}