Make lines thinner (1/24)

This commit is contained in:
teodor6140 2019-05-24 18:49:45 +03:00
parent 2e3a433dab
commit 843f1434e5
3 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ namespace spades {
ModelRenderParam param; ModelRenderParam param;
param.customColor = color; param.customColor = color;
param.matrix = Matrix4::Translate(MakeVector3(v.x + .5f, v.y + .5f, v.z + .5f)); param.matrix = Matrix4::Translate(MakeVector3(v.x + .5f, v.y + .5f, v.z + .5f));
param.matrix = param.matrix * Matrix4::Scale(1.f / 16.f); param.matrix = param.matrix * Matrix4::Scale(1.f / 24.f);
renderer->RenderModel(active ? curActive : curInactive, param); renderer->RenderModel(active ? curActive : curInactive, param);
} }