ToolBox cleanup. #17

Merged
shaunrd0 merged 12 commits from toolbox into master 2025-03-23 22:28:42 +00:00
Showing only changes of commit 5984763d43 - Show all commits

View File

@ -485,7 +485,7 @@ void QtkScene::update()
// Helper lambda to set the light position used by GLSL shaders on the model.
// TODO: This could be a helper function on the Model class.
auto setLightPosition = [](const std::string & lightName, Model * model) {
if (auto light = Model::getInstance(lightName.c_str()); light) {
if (auto light = MeshRenderer::getInstance(lightName.c_str()); light) {
QVector3D position = light->getTransform().getTranslation();
model->setUniform("uLight.position", position);
} else {