some extra messages

main
Brett 2024-01-09 14:35:48 -05:00
parent e5e0b4120c
commit 25fd136e21
1 changed files with 13 additions and 0 deletions

View File

@ -151,6 +151,19 @@ namespace blt::gfx
current_object.object_name = token.read_fully();
break;
}
case 'm':
{
BLT_TRACE("Material '%s' needs to be loaded!", std::string(token.read_fully()).c_str());
break;
}
case 'u':
{
BLT_TRACE("Using material '%s'", std::string(token.read_fully()).c_str());
break;
}
case 's':
BLT_TRACE("Using shading: %s", std::string(token.read_fully()).c_str());
break;
}
}
data.push_back(current_object);