This commit is contained in:
Nikola Petrov 2024-12-21 01:36:28 +01:00
parent fc7d33fb3c
commit 24bb56810a
2 changed files with 1 additions and 3 deletions

View File

@ -43,7 +43,7 @@ Vector2 Tree::drawLine()
{
Vector2 point = Vector2Lerp(arg.start, end, i);
Color color = ColorLerp(m_dna->branches[arg.dep - 1].color, m_dna->branches[arg.dep].color, i);
DrawCircleV(point, thick, color);
DrawCircleV(point, thick, color); // TODO Change to use shader
}
return end;
}

View File

@ -1,5 +1,3 @@
#include "values/Dna.hpp"
#include "values/mrand.hpp"