16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 00:49:19 +02:00
Files
maszyna/entitysystem/systems/MeshRenderSystem.cpp
2026-05-24 21:48:05 +02:00

17 lines
659 B
C++

#include "stdafx.h"
#include "MeshRenderSystem.h"
#include "entitysystem/ECWorld.h"
#include "entitysystem/components/BasicComponents.h"
#include "entitysystem/components/RenderComponents.h"
// gfx_renderer does not expose per-handle draw calls — geometry is drawn
// by the legacy pipeline (simulation::Region → GfxRenderer->Render()).
// MeshRenderer.visible is the authoritative visibility flag; LODSystem writes
// it and the legacy scene node reads it when the renderer traverses the scene.
// When a custom ECS draw path is wired into the renderer this system will
// issue the actual draw calls.
void MeshRenderSystem::Render(ECWorld& world)
{
}