mirror of
https://github.com/Poikilos/b3view.git
synced 2023-10-03 07:58:48 -07:00
Add a low-poly penguin and a texture for it. Add a UV test texture.
This commit is contained in:
parent
6d3496fb37
commit
390b490961
BIN
dist/share/b3view/meshes/penguin-lowpoly-poikilos.b3d
vendored
Normal file
BIN
dist/share/b3view/meshes/penguin-lowpoly-poikilos.b3d
vendored
Normal file
Binary file not shown.
7
dist/share/b3view/textures/license.txt
vendored
Normal file
7
dist/share/b3view/textures/license.txt
vendored
Normal 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
BIN
dist/share/b3view/textures/penguin.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 772 KiB |
BIN
projects/meshes/penguin-lowpoly-poikilos.blend
Normal file
BIN
projects/meshes/penguin-lowpoly-poikilos.blend
Normal file
Binary file not shown.
BIN
projects/textures/UV-test-poikilos-64x64-to-128x128.png
Normal file
BIN
projects/textures/UV-test-poikilos-64x64-to-128x128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
7
projects/textures/license.txt
Normal file
7
projects/textures/license.txt
Normal 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
projects/textures/penguin.png
Normal file
BIN
projects/textures/penguin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 772 KiB |
BIN
projects/textures/penguin.xcf
Normal file
BIN
projects/textures/penguin.xcf
Normal file
Binary file not shown.
@ -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
12
update-dist.sh
Executable 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"
|
Loading…
x
Reference in New Issue
Block a user