From d8e079dad32f4072236b905a13e8fa6bc379df1d Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 3 Jun 2020 00:06:47 +0200 Subject: [example] Update textures_particles_blending --- examples/textures/textures_particles_blending.c | 4 ++-- examples/textures/textures_particles_blending.png | Bin 421110 -> 525207 bytes 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/textures/textures_particles_blending.c b/examples/textures/textures_particles_blending.c index 3e3cd844..4d1fbf4c 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 f90a87fd..d173461c 100644 Binary files a/examples/textures/textures_particles_blending.png and b/examples/textures/textures_particles_blending.png differ -- cgit v1.2.3