Fixed boats rotation

This commit is contained in:
iDunnoDev
2022-05-30 00:25:14 +01:00
committed by iDunnoDev
parent eeec232821
commit 51afdeecbd
5 changed files with 25 additions and 25 deletions

View File

@ -5,9 +5,9 @@ ControlledMeshNode::ControlledMeshNode(wstring name, wstring modelName) : MeshNo
}
void ControlledMeshNode::Update(FXMMATRIX& currentWorldTransformation)
{
ObjectNode::Update(_worldTransformation);
{
MeshNode::Update(currentWorldTransformation);
ObjectNode::Update(_worldTransformation);
}
bool ControlledMeshNode::Initialise(void)