add the ability to exclude props from the selection size + add aura visualisation rings again

This was SVN commit r14497.
This commit is contained in:
sanderd17
2014-01-04 10:41:32 +00:00
parent 4b1297b328
commit d4b2c1285c
7 changed files with 22 additions and 14 deletions
+3
View File
@@ -82,6 +82,7 @@ bool CObjectBase::Load(const VfsPath& pathname)
AT(offsetz);
AT(minheight);
AT(maxheight);
AT(selectable);
#undef AT
#undef EL
@@ -252,6 +253,8 @@ bool CObjectBase::Load(const VfsPath& pathname)
prop.m_minHeight = pe.Value.ToFloat();
else if (pe.Name == at_maxheight)
prop.m_maxHeight = pe.Value.ToFloat();
else if (pe.Name == at_selectable)
prop.m_selectable = pe.Value != "false";
}
currentVariant->m_Props.push_back(prop);
}