Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-29 17:02:14 +0300
committerGitHub <noreply@github.com>2022-10-29 17:02:14 +0300
commit6f55761de224aeff0cf0968dbac61e1e2e9f38ae (patch)
treefc48a7b9004f52859821f601427e23e3b60a69c1
parentd778911c4f553ed4f99876fc247c2306d073bf59 (diff)
Update README.md
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 51af291..6fa65db 100644
--- a/README.md
+++ b/README.md
@@ -137,15 +137,15 @@ Examples:
Option to save preview for input image number __#__. Stored as PNG file. Useful if you need to preview result without compiling ROM. Preview is not saved if option is not specified.
Examples:
-* nestiler -v0 preview.png ...
-* nestiler --out-preview-1 image.png ...
+* nestiler -v0 preview.png -v1 preview2.png ...
+* nestiler --out-preview-1 image.png --out-preview-2 image2.png ...
### Option -t<#>, --out-palette-<#> \<filename\>
Option to save generated palette number __#__. Just four bytes with color indices. Not saved if option is not specified.
Examples:
-* nestiler -t0 palette0.bin ...
-* nestiler --out-palette-1 palette1.bin ...
+* nestiler -t0 palette0.bin -t0 palette2.bin ...
+* nestiler --out-palette-1 palette1.bin --out-palette-2 palette2.bin ...
Please note that index here is palette number, not input file number.
@@ -153,22 +153,22 @@ Please note that index here is palette number, not input file number.
Option to save generated pattern table for image number __#__. 16 bytes per tile, 960 bytes per full screen image. Not saved if option is not specified.
Examples:
-* nestiler -n0 pattern0.bin ...
-* nestiler --out-pattern-table-2 out.bin ...
+* nestiler -n0 pattern0.bin -n1 pattern1.bin ...
+* nestiler --out-pattern-table-2 out.bin --out-pattern-table-3 out2.bin ...
### Option -a<#>, --out-name-table-<#> \<filename\>
Option to save generated nametable for image number __#__. 16 bytes per tile, 960 bytes per full screen image. Not saved if option is not specified.
Examples:
-* nestiler -a2 nt2.bin ...
-* nestiler --out-name-table-1 nametable.bin ...
+* nestiler -a2 nt2.bin -a3 nt3.bin ...
+* nestiler --out-name-table-1 nametable.bin --out-name-table-2 nametable2.bin ...
### Option -u<#>, --out-attribute-table-<#> \<filename\>
Option to save generated attribute table for image number __#__. 1 byte per 16 tiles. 64 bytes per full screen image. Not saved if option is not specified. Can't be used in sprite modes.
Examples:
-* nestiler -u0 attr.bin ...
-* nestiler --out-attribute-table-1 attrtable1.bin ...
+* nestiler -u0 attr_a.bin -u1 attr_b.bin ...
+* nestiler --out-attribute-table-1 attrtable1.bin --out-attribute-table-2 attrtable2.bin ...
### Option -z, --out-tiles-csv \<filename.csv\>
Option to save CSV file with tiles information for all input images: indices, used palettes, etc. Not saved if option is not specified.