size and sizeNoEnergy were int instead of float. Thats why there were no more particles anymore in some cases.

This commit is contained in:
Titus Tscharntke 2013-10-02 22:19:17 +00:00
parent dc503d6340
commit a83eb9baba

View File

@ -62,8 +62,8 @@ protected:
Vec3f offset; Vec3f offset;
Vec4f color; Vec4f color;
Vec4f colorNoEnergy; Vec4f colorNoEnergy;
int size; float size;
int sizeNoEnergy; float sizeNoEnergy;
float speed; float speed;
float gravity; float gravity;
int emissionRate; int emissionRate;