diff --git a/tutorials/2d/img/direction1.png b/tutorials/2d/img/direction1.png new file mode 100644 index 000000000..df1dd6cd0 Binary files /dev/null and b/tutorials/2d/img/direction1.png differ diff --git a/tutorials/2d/img/direction2.png b/tutorials/2d/img/direction2.png new file mode 100644 index 000000000..92a42cbe1 Binary files /dev/null and b/tutorials/2d/img/direction2.png differ diff --git a/tutorials/2d/img/paranim1.gif b/tutorials/2d/img/paranim1.gif deleted file mode 100644 index 4f26ae7ee..000000000 Binary files a/tutorials/2d/img/paranim1.gif and /dev/null differ diff --git a/tutorials/2d/img/paranim2.gif b/tutorials/2d/img/paranim2.gif deleted file mode 100644 index 7e73cfbe1..000000000 Binary files a/tutorials/2d/img/paranim2.gif and /dev/null differ diff --git a/tutorials/2d/particle_systems_2d.rst b/tutorials/2d/particle_systems_2d.rst index 47b94084c..40dad5bb3 100644 --- a/tutorials/2d/particle_systems_2d.rst +++ b/tutorials/2d/particle_systems_2d.rst @@ -178,21 +178,20 @@ means particles are drawn according to their emission order (default). ParticlesMaterial settings -------------------------- -.. Commented out as not implemented in 3.x for now. -.. - Direction - ~~~~~~~~~ -.. - This is the base angle at which particles emit. Default is ``0`` (down): -.. - .. image:: img/paranim1.gif -.. - Changing it will change the emissor direction, but gravity will still affect them: -.. - .. image:: img/paranim2.gif -.. - This parameter is useful because, by rotating the node, gravity will - also be rotated. Changing direction allows them to be separated. +Direction +~~~~~~~~~ + +This is the base direction at which particles emit. The default is +``Vector3(1, 0, 0)`` which makes particles emit to the right. However, +with the default gravity settings, particles will go straight down. + +.. image:: img/direction1.png + +For this property to be noticeable, you need an *initial velocity* greater +than 0. Here, we set the initial velocity to 40. You'll notice that +particles emit toward the right, then go down because of gravity. + +.. image:: img/direction2.png Spread ~~~~~~ @@ -204,6 +203,11 @@ parameter must be greater than 0. .. image:: img/paranim3.gif +Flatness +~~~~~~~~ + +This property is only useful for 3D particles. + Gravity ~~~~~~~