layout consistency pass pt 2 -place shapebase inheriting initpersistfields up top so the child layout appends to the parent

This commit is contained in:
AzaezelX 2023-01-24 19:30:09 -06:00
parent f07c8745b2
commit ace18d0246
22 changed files with 162 additions and 157 deletions

View file

@ -58,8 +58,6 @@ ForestItemData::ForestItemData()
void ForestItemData::initPersistFields()
{
Parent::initPersistFields();
addGroup( "Shapes" );
INITPERSISTFIELD_SHAPEASSET(Shape, ForestItemData, "Shape asset for this item type");
@ -108,6 +106,7 @@ void ForestItemData::initPersistFields()
"Frequency (speed) of the effect on leafs/fronds." );
endGroup( "Wind" );
Parent::initPersistFields();
}
void ForestItemData::consoleInit()