Patch Update - Light dans ImGui

Feat :

+ Fenêtre Light dans l'interface
+ Contrôle des lights (position, couleur)
This commit is contained in:
2024-04-08 14:28:27 +02:00
parent 064c34b6dc
commit 8d344dbfc7
5 changed files with 32 additions and 11 deletions

View File

@@ -84,6 +84,8 @@ public:
void SetLightPosition(int index, XMVECTOR color);
void SetLightColor(int index, XMVECTOR color);
void DeleteLight(int index);
std::vector<LightClass*> GetLights() const { return m_Lights; };
private: