diff --git a/examples/textures/textures_particles_blending.c b/examples/textures/textures_particles_blending.c index 3e3cd8445..4d1fbf4c3 100644 --- a/examples/textures/textures_particles_blending.c +++ b/examples/textures/textures_particles_blending.c @@ -80,8 +80,8 @@ int main(void) { if (mouseTail[i].active) { - mouseTail[i].position.y += gravity; - mouseTail[i].alpha -= 0.01f; + mouseTail[i].position.y += gravity/2; + mouseTail[i].alpha -= 0.005f; if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false; diff --git a/examples/textures/textures_particles_blending.png b/examples/textures/textures_particles_blending.png index f90a87fd2..d173461cf 100644 Binary files a/examples/textures/textures_particles_blending.png and b/examples/textures/textures_particles_blending.png differ