traces working and nice (on simple renderer)

This commit is contained in:
Andreas Ortmann 2016-09-27 20:23:33 +02:00
parent fd8d56bf95
commit 2b85397674
5 changed files with 26 additions and 12 deletions

View file

@ -19,7 +19,7 @@ namespace game {
void Trace::addPointFromMissile(bool forceAdd)
{
fidelityCounter++;
if (forceAdd || fidelityCounter >= 20) {
if (forceAdd || fidelityCounter >= 10) {
fidelityCounter = 0;
points.push_back(TracePoint(missile));
}