Refactor vector EqualsScalar (#171)

* Refactor vector EqualsScalar

* Fix param name
This commit is contained in:
Christian Semmler
2023-10-07 14:00:20 -04:00
committed by GitHub
parent 201125d209
commit e6507b874a
3 changed files with 7 additions and 22 deletions

View File

@@ -22,22 +22,9 @@ MxDSAction::MxDSAction()
this->m_loopCount = -1;
this->SetType(MxDSType_Action);
{
float value = FLT_MAX;
this->m_location.EqualsScalar(&value);
}
{
float value = FLT_MAX;
this->m_direction.EqualsScalar(&value);
}
{
float value = FLT_MAX;
this->m_up.EqualsScalar(&value);
}
this->m_location.Fill(FLT_MAX);
this->m_direction.Fill(FLT_MAX);
this->m_up.Fill(FLT_MAX);
this->m_unk84 = 0;
this->m_unk88 = 0;
this->m_omni = NULL;