Browse Source

Merge pull request #9848 from Lukas-Fletcher/patch-4

Update fract delta description in particle_systems_2d.rst
Matthew 6 months ago
parent
commit
d1a80f2375
1 changed files with 10 additions and 1 deletions
  1. 10 1
      tutorials/2d/particle_systems_2d.rst

+ 10 - 1
tutorials/2d/particle_systems_2d.rst

@@ -208,7 +208,16 @@ at 2 frames per second. Note this does not slow down the particle system itself.
 Fract Delta
 Fract Delta
 ~~~~~~~~~~~
 ~~~~~~~~~~~
 
 
-This can be used to turn Fract Delta on or off.
+Setting Fract Delta to ``true`` results in fractional delta calculation,
+which has a smoother particles display effect.
+This increased smoothness stems from higher accuracy.
+The difference is more noticeable in systems with high randomness or fast-moving particles.
+It helps maintain the visual consistency of the particle system,
+making sure that each particle's motion aligns with its actual lifespan.
+Without it, particles might appear to jump or move more than they should in a single frame
+if they are emitted at a point within the frame.
+The greater accuracy has a performance tradeoff,
+particularly in systems with a higher amount of particles.
 
 
 Drawing parameters
 Drawing parameters
 ------------------
 ------------------