diff --git a/tools/editor/editor_viewport.cpp b/tools/editor/editor_viewport.cpp index 47fb3c05..212fcf1c 100644 --- a/tools/editor/editor_viewport.cpp +++ b/tools/editor/editor_viewport.cpp @@ -346,10 +346,13 @@ void EditorViewport::rebuildObjects(const std::vector& objects, } } if (!model.isValid()) { - LOG_DEBUG("NPC model invalid: ", npc.modelPath, + LOG_WARNING("NPC model invalid: ", npc.modelPath, " (verts=", model.vertices.size(), " idx=", model.indices.size(), ")"); continue; } + LOG_INFO("NPC M2 loaded: ", npc.modelPath, " (", + model.vertices.size(), "v ", model.indices.size(), "i ", + model.batches.size(), "b)"); if (model.boundRadius < 1.0f) model.boundRadius = 50.0f; // Validate vertex data bool ok = true;