spelling: transform

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-01-18 08:35:06 -05:00
parent e597763183
commit c26cb4730d
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ int main()
lastEntity->addChild(model);
lastEntity = lastEntity->children.back().get();
//Set tranform values
//Set transform values
lastEntity->transform.setLocalPosition({ 10, 0, 0 });
lastEntity->transform.setLocalScale({ scale, scale, scale });
}

View File

@@ -117,7 +117,7 @@ int main()
ourEntity.addChild(model);
lastEntity = ourEntity.children.back().get();
//Set tranform values
//Set transform values
lastEntity->transform.setLocalPosition({ x * 10.f - 100.f, 0.f, z * 10.f - 100.f });
}
}