made nitro particles bigger for a nicer effect

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2875 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2009-01-09 20:42:49 +00:00
parent 0ba91a7392
commit c119c8ba75

View File

@ -71,7 +71,7 @@ void Nitro::particle_create(int, Particle *p)
sgSetVec4(p->m_col, 1, 1, 1, 1 ); /* initially white */
sgSetVec3(p->m_vel, 0, 0, 0 );
sgSetVec3(p->m_acc, 0, 0, 2.0f ); /* Gravity */
p->m_size = 0.5f;
p->m_size = 1.0f;
p->m_time_to_live = 0.8f;
Vec3 xyz = m_kart->getXYZ();