Added information about currently supported features
This commit is contained in:
parent
64703ce8a5
commit
9e67a231e9
17
README.md
17
README.md
|
@ -2,7 +2,7 @@
|
||||||
This is a cross-platform Python 3 script that can convert *almost* any recent Minecraft resource pack into a MineClone2 texture pack.
|
This is a cross-platform Python 3 script that can convert *almost* any recent Minecraft resource pack into a MineClone2 texture pack.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
The script requires Python 3 installed along with Image Magick version 7 or 6.[ The Python Image Library (PIL) must be installed as well. ](https://pillow.readthedocs.io/en/stable/installation.html)
|
The script requires Python 3 installed along with Image Magick version 7 or 6.[ The Python Image Library (it's fork Pillow) must be installed as well. ](https://pillow.readthedocs.io/en/stable/installation.html)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
python3 convert-mc-resource-pack.py [OPTIONS] INPUT-RESOURCE-PACK.zip [OUTPUT-NAME]
|
python3 convert-mc-resource-pack.py [OPTIONS] INPUT-RESOURCE-PACK.zip [OUTPUT-NAME]
|
||||||
|
@ -12,6 +12,12 @@ The script requires Python 3 installed along with Image Magick version 7 or 6.[
|
||||||
-h --help Display this usage text.
|
-h --help Display this usage text.
|
||||||
-v --version Display the version of this script and then exit.
|
-v --version Display the version of this script and then exit.
|
||||||
|
|
||||||
|
## Supported Features
|
||||||
|
* Almost full coverage of Minecraft blocks and items to MCL2 items and blocks
|
||||||
|
* Automatic detection of animated items and blocks being cropped to static frames for MCL2
|
||||||
|
* Conversion of the block breaking animation (with alpha values!)
|
||||||
|
* Colorization of grass and leaves
|
||||||
|
|
||||||
## Unsupported Features
|
## Unsupported Features
|
||||||
* Cropping of mobs, chests, and armor still unsupported.
|
* Cropping of mobs, chests, and armor still unsupported.
|
||||||
* Does not convert normal and specular maps.
|
* Does not convert normal and specular maps.
|
||||||
|
@ -21,7 +27,8 @@ Windows 10, Image Magick version 7
|
||||||
Linux Debian, Image Magick version 6
|
Linux Debian, Image Magick version 6
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
1. Test current functionality on Linux distribution
|
1. Enable conversion of normal and specular maps.
|
||||||
2. Enable conversion of normal and specular maps.
|
2. Cropping of single chests
|
||||||
3. Cropping of Chests
|
3. Conversion of ender chests
|
||||||
4. Cropping of armor
|
4. Conversion of double chests
|
||||||
|
5. Cropping of armor
|
||||||
|
|
Loading…
Reference in New Issue