Przeglądaj źródła

REVIEWED: Bunnymark example new `raybunny`! #5344

As the license for previous bunny was not clear, it was replaced by a new custom bunny specifically created for this example with a CC0 license
Ray 1 miesiąc temu
rodzic
commit
3e3453d54e

+ 1 - 1
examples/textures/resources/LICENSE.md

@@ -8,7 +8,7 @@
 | explosion.png        | [Unity Labs Paris](https://blogs.unity3d.com/2016/11/28/free-vfx-image-sequences-flipbooks/) | [CC0](https://creativecommons.org/publicdomain/zero/1.0/) |
 | parrots.png          | [Kodak set](http://r0k.us/graphics/kodak/)  | ❔       | Original name: `kodim23.png`
 | cat.png              | ❔         | ❔     | - |
-| wabbit_alpha.png     | ❔         | ❔     | - |
+| raybunny.png         | [VoidSrc*](https://x.com/voidsrc)         | [CC0](https://creativecommons.org/publicdomain/zero/1.0/)      | - |
 | custom_jupiter_crash.png | [Brian Kent (AEnigma)](https://www.dafont.com/es/aenigma.d188) | [Freeware](https://www.dafont.com/es/jupiter-crash.font) | Atlas created by [@raysan5](https://github.com/raysan5) |
 | KAISG.ttf            | [Dieter Steffmann](http://www.steffmann.de/wordpress/) | [Freeware](https://www.1001fonts.com/users/steffmann/) | [Kaiserzeit Gotisch](https://www.dafont.com/es/kaiserzeit-gotisch.font) font |
 | fudesumi.png         | [Eiden Marsal](https://www.artstation.com/marshall_z)  | [CC-BY-NC](https://creativecommons.org/licenses/by-nc/4.0/)  | - |

BIN
examples/textures/resources/raybunny.png


BIN
examples/textures/resources/wabbit_alpha.png


+ 1 - 1
examples/textures/textures_bunnymark.c

@@ -45,7 +45,7 @@ int main(void)
     InitWindow(screenWidth, screenHeight, "raylib [textures] example - bunnymark");
 
     // Load bunny texture
-    Texture2D texBunny = LoadTexture("resources/wabbit_alpha.png");
+    Texture2D texBunny = LoadTexture("resources/raybunny.png");
 
     Bunny *bunnies = (Bunny *)malloc(MAX_BUNNIES*sizeof(Bunny));    // Bunnies array
 

BIN
examples/textures/textures_bunnymark.png