diff options
| author | raysan5 <[email protected]> | 2020-05-31 23:31:43 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-05-31 23:31:43 +0200 |
| commit | 82fca4340621d51f70b2fa832caaede1deb437dc (patch) | |
| tree | 6ad8a7244e705f2d0878e5caaaff2244352cb4ad /examples/textures/textures_particles_blending.c | |
| parent | 0e1d7d643081929338ba7cc7c5f85736ac632e92 (diff) | |
| download | raylib-82fca4340621d51f70b2fa832caaede1deb437dc.tar.gz raylib-82fca4340621d51f70b2fa832caaede1deb437dc.zip | |
Replaced some resources for better licensing
Some resources used in examples have not a clear license, so, I'm replacing some of them for clearly licensed versions or resources created by me under CC0. License file to be added.
Diffstat (limited to 'examples/textures/textures_particles_blending.c')
| -rw-r--r-- | examples/textures/textures_particles_blending.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/textures/textures_particles_blending.c b/examples/textures/textures_particles_blending.c index d094c6c2..3e3cd844 100644 --- a/examples/textures/textures_particles_blending.c +++ b/examples/textures/textures_particles_blending.c @@ -48,7 +48,7 @@ int main(void) float gravity = 3.0f; - Texture2D smoke = LoadTexture("resources/smoke.png"); + Texture2D smoke = LoadTexture("resources/spark_flame.png"); int blending = BLEND_ALPHA; @@ -85,7 +85,7 @@ int main(void) if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false; - mouseTail[i].rotation += 5.0f; + mouseTail[i].rotation += 2.0f; } } |
