mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 19:19:19 +02:00
12 lines
279 B
C++
12 lines
279 B
C++
#pragma once
|
|
|
|
#include "BaseSystem.h"
|
|
|
|
// Reads LODController + Transform on each entity and toggles MeshRenderer.visible
|
|
// based on distance to camera. Runs every Update tick.
|
|
class LODSystem : public BaseSystem
|
|
{
|
|
public:
|
|
void Update(ECWorld& world, float dt) override;
|
|
};
|