Added appropriate delete statements.

This commit is contained in:
2022-11-12 01:35:47 -08:00
parent e6d475d170
commit 64ff1f279d
14 changed files with 71 additions and 8 deletions

View File

@ -13,6 +13,7 @@ Transform::Transform(SceneItem *item) :
transformWorld(1.0f)
{
assertNotNull(item);
this->item = item;
this->updateLocalValuesFromLocalTransform();
}