Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
8d5870c54c | |||
bde2f1e3f2 | |||
59f0dcaf3f | |||
c6f9a26970 | |||
353f36d551 | |||
d4b398eae2 | |||
ea7aacc9e7 | |||
743e2cfc9c | |||
abc3df86e3 | |||
41524201d1 | |||
41be19fc7a | |||
ad189102d5 | |||
e0765da839 | |||
482a13b495 | |||
56353133e1 | |||
443cda2183 | |||
fab418b56f | |||
00f6a8137e | |||
9b8fb79030 | |||
02323fc427 | |||
3aebed6fed | |||
63555ed0be | |||
7b59880736 | |||
8e1e525340 | |||
af8212a1bd | |||
361d0222ca | |||
436809f8fa | |||
04b43a5969 | |||
dcca582ef3 | |||
f1d0f0789d | |||
5c13010014 |
4
.gitignore
vendored
@ -1,4 +1,4 @@
|
||||
textures/character_*.png
|
||||
#textures/character_*.png
|
||||
textures/player_*.png
|
||||
meta/character_*.txt
|
||||
#meta/character_*.txt
|
||||
meta/player_*.txt
|
||||
|
@ -1,4 +1,4 @@
|
||||
# skinsdb
|
||||
# skinsdb - User-facing branch that includes a few basic skins
|
||||
|
||||
This Minetest mod offers changeable player skins with a graphical interface for multiple inventory mods.
|
||||
|
||||
@ -38,9 +38,9 @@ You might want to run `minetest` in a Terminal/Console window to check the log o
|
||||
**Requirements:**
|
||||
|
||||
* Python 3
|
||||
* `requests` library: `pip3 install requests`
|
||||
|
||||
Go to the updater folder of this mod and run `python3 update_skins.py`
|
||||
* `requests` library: `pip3 install requests`
|
||||
|
||||
Go to the updater folder of this mod and run `python3 update_skins.py`
|
||||
The Script will download all the skins from the database for you.
|
||||
|
||||
### Manual addition
|
||||
@ -66,3 +66,4 @@ The Script will download all the skins from the database for you.
|
||||
- bell07 (source code)
|
||||
- stujones11 (player models)
|
||||
- jordan4ibanez (1st person view hand)
|
||||
- sirrobzeroone (skins)
|
||||
|
3
meta/character_castaway_female.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Castaway female
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_castaway_male.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Castaway male
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_farmer_female.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Farmer female
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_farmer_male.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Farmer male
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_prince.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Prince
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_princess.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Princess
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_rogue_female.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Rogue female
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
3
meta/character_rogue_male.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Rogue male
|
||||
sirrobzeroone
|
||||
CC0/Public Domain
|
BIN
textures/character_castaway_female.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
textures/character_castaway_male.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
textures/character_farmer_female.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
textures/character_farmer_male.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
textures/character_prince.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
textures/character_princess.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
textures/character_rogue_female.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
textures/character_rogue_male.png
Normal file
After Width: | Height: | Size: 3.9 KiB |