From 95df772707b77b371f66f81a9b4592ff90ca0944 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 18 Dec 2013 19:36:34 -0800 Subject: [PATCH] make really old 30 seconds not 300 --- libraries/particles/src/Particle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/particles/src/Particle.cpp b/libraries/particles/src/Particle.cpp index c2f86c7b75..9248bf540f 100644 --- a/libraries/particles/src/Particle.cpp +++ b/libraries/particles/src/Particle.cpp @@ -404,7 +404,7 @@ void Particle::update() { float velocityScalar = glm::length(getVelocity()); const float STILL_MOVING = 0.05 / TREE_SCALE; bool isStillMoving = (velocityScalar > STILL_MOVING); - const float REALLY_OLD = 300.0f; // 300 seconds + const float REALLY_OLD = 30.0f; // 30 seconds bool isReallyOld = (getLifetime() > REALLY_OLD); bool isInHand = getInHand(); bool shouldDie = !isInHand && !isStillMoving && isReallyOld;