feat: add TRS serialization and display property support to MultiSelectionProp

This commit is contained in:
AndreaRigoni
2026-04-10 21:44:18 +00:00
parent e320c932d2
commit bf4006ff91
4 changed files with 56 additions and 9 deletions

View File

@@ -569,6 +569,18 @@ void Prop3D::SetOpacity(double alpha)
pd->ApplyAppearance(pd->m_Prop);
}
void Prop3D::GetColor(double &r, double &g, double &b) const
{
r = pd->m_Color[0];
g = pd->m_Color[1];
b = pd->m_Color[2];
}
double Prop3D::GetOpacity() const
{
return pd->m_Opacity;
}