Add a low-poly penguin and a texture for it. Add a UV test texture.

master
poikilos 2021-03-23 22:04:56 -04:00
parent 6d3496fb37
commit 390b490961
10 changed files with 33 additions and 2 deletions

Binary file not shown.

View File

@ -0,0 +1,7 @@
The penguin texture is derived from:
https://commons.wikimedia.org/wiki/File:Manchot_royal_-_King_Penguin.jpg
Photo copyright (c) Samuel Blanc, CC BY-SA 3.0 <https://creativecommons.org/licenses/by-sa/3.0>, via Wikimedia Commons
The following image was used for proportions but not included in any form:
https://commons.wikimedia.org/wiki/File:King_Penguins_at_Salisbury_Plain_(5724038519).jpg
Photo copyright (c) Liam Quinn from Canada, CC BY-SA 2.0 <https://creativecommons.org/licenses/by-sa/2.0>, via Wikimedia Commons

BIN
dist/share/b3view/textures/penguin.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -0,0 +1,7 @@
The penguin texture is derived from:
https://commons.wikimedia.org/wiki/File:Manchot_royal_-_King_Penguin.jpg
Photo copyright (c) Samuel Blanc, CC BY-SA 3.0 <https://creativecommons.org/licenses/by-sa/3.0>, via Wikimedia Commons
The following image was used for proportions but not included in any form:
https://commons.wikimedia.org/wiki/File:King_Penguins_at_Salisbury_Plain_(5724038519).jpg
Photo copyright (c) Liam Quinn from Canada, CC BY-SA 2.0 <https://creativecommons.org/licenses/by-sa/2.0>, via Wikimedia Commons

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 KiB

Binary file not shown.

View File

@ -240,8 +240,13 @@ only applies to Visual Studio users.)
such as from <https://sledjhamr.org/source/media/Irrlicht/>) such as from <https://sledjhamr.org/source/media/Irrlicht/>)
**"Feel free to use however you like, commercial etc, credits are **"Feel free to use however you like, commercial etc, credits are
Appreciated..."** -Psionic Appreciated..."** -Psionic
* icon (b3view.xcf, p3view.png) Creative Commons Attribution Share-Alike * The penguin texture is derived from:
4.0 [poikilos](https://poikilos.org) https://commons.wikimedia.org/wiki/File:Manchot_royal_-_King_Penguin.jpg
Photo copyright (c) Samuel Blanc, CC BY-SA 3.0
<https://creativecommons.org/licenses/by-sa/3.0>, via Wikimedia
Commons
* All media not mentioned above are Creative Commons Attribution
Share-Alike 4.0 by [Poikilos](https://poikilos.org).
* All files not mentioned above, and not described in text files in the * All files not mentioned above, and not described in text files in the
same folder as media (such as "build" folder) are licensed under the same folder as media (such as "build" folder) are licensed under the
**GPL v3** as per <https://code.google.com/archive/p/b3view/> **GPL v3** as per <https://code.google.com/archive/p/b3view/>

12
update-dist.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
src=projects/textures/penguin.png
dst=../../dist/share/b3view/textures/penguin.png
if [ ! -f "$src" ]; then
echo "* There is nothing to do because there is no \"$src\". See the xcf file there instead. To use this script, export it to png where there is no png then run this script."
exit 0
fi
if [ ! -f "$dst" ]; then
echo "Error: There is no \"$dst\" to update, so for safety nothing will be done."
exit 1
fi
cp "$src" "$dst"