diff --git a/dist/share/b3view/meshes/penguin-lowpoly-poikilos.b3d b/dist/share/b3view/meshes/penguin-lowpoly-poikilos.b3d new file mode 100644 index 0000000..199c288 Binary files /dev/null and b/dist/share/b3view/meshes/penguin-lowpoly-poikilos.b3d differ diff --git a/dist/share/b3view/textures/license.txt b/dist/share/b3view/textures/license.txt new file mode 100644 index 0000000..ad7117a --- /dev/null +++ b/dist/share/b3view/textures/license.txt @@ -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 , 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 , via Wikimedia Commons diff --git a/dist/share/b3view/textures/penguin.png b/dist/share/b3view/textures/penguin.png new file mode 100644 index 0000000..50a1604 Binary files /dev/null and b/dist/share/b3view/textures/penguin.png differ diff --git a/projects/meshes/penguin-lowpoly-poikilos.blend b/projects/meshes/penguin-lowpoly-poikilos.blend new file mode 100644 index 0000000..7a1dcaf Binary files /dev/null and b/projects/meshes/penguin-lowpoly-poikilos.blend differ diff --git a/projects/textures/UV-test-poikilos-64x64-to-128x128.png b/projects/textures/UV-test-poikilos-64x64-to-128x128.png new file mode 100644 index 0000000..675e652 Binary files /dev/null and b/projects/textures/UV-test-poikilos-64x64-to-128x128.png differ diff --git a/projects/textures/license.txt b/projects/textures/license.txt new file mode 100644 index 0000000..ad7117a --- /dev/null +++ b/projects/textures/license.txt @@ -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 , 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 , via Wikimedia Commons diff --git a/projects/textures/penguin.png b/projects/textures/penguin.png new file mode 100644 index 0000000..50a1604 Binary files /dev/null and b/projects/textures/penguin.png differ diff --git a/projects/textures/penguin.xcf b/projects/textures/penguin.xcf new file mode 100644 index 0000000..97a3441 Binary files /dev/null and b/projects/textures/penguin.xcf differ diff --git a/readme.md b/readme.md index 9f4f8b8..6b6e1d0 100644 --- a/readme.md +++ b/readme.md @@ -240,8 +240,13 @@ only applies to Visual Studio users.) such as from ) **"Feel free to use however you like, commercial etc, credits are Appreciated..."** -Psionic -* icon (b3view.xcf, p3view.png) Creative Commons Attribution Share-Alike - 4.0 [poikilos](https://poikilos.org) +* 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 + , 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 same folder as media (such as "build" folder) are licensed under the **GPL v3** as per diff --git a/update-dist.sh b/update-dist.sh new file mode 100755 index 0000000..1dddc0e --- /dev/null +++ b/update-dist.sh @@ -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"