Add 'ellipse' distribution to ParticleSystem

This commit is contained in:
Nathan Korth
2016-10-28 16:26:28 -04:00
parent db78c89639
commit 53c528aa44
2 changed files with 10 additions and 1 deletions
+2 -1
View File
@@ -46,13 +46,14 @@ class ParticleSystem : public Drawable
{
public:
/**
* Type of distribution new particles are drawn from: None, uniform, normal.
* Type of distribution new particles are drawn from: None, uniform, normal, ellipse.
*/
enum AreaSpreadDistribution
{
DISTRIBUTION_NONE,
DISTRIBUTION_UNIFORM,
DISTRIBUTION_NORMAL,
DISTRIBUTION_ELLIPSE,
DISTRIBUTION_MAX_ENUM
};