You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Option to output template z-data as images (grayscale, pixel brightness is z-data value times eight)
- Option to fix z-data (values above 31 converted to 0) for processed tiles. Works even if no image data is converted.
{"i|files=","A comma-separated list of input file(s) and/or directory/directories.", v =>settings.Filenames=v},
21
30
{"p|palette=","Palette file to use for conversion.", v =>settings.Palette=v},
22
31
{"o|output-images","Output template data as images instead of converting images to templates.", v =>settings.OutputImages=true},
32
+
{"u|output-zdata","Output template z-data as images instead of converting images to templates.", v =>settings.OutputZData=true},
23
33
{"e|extensions-override=","Comma-separated list of file extensions (including the .) to use instead of built-in defaults.", v =>settings.CustomExtensions=v},
24
34
{"r|replace-radarcolor","Alter tile radar colors based on new image & palette data.", v =>settings.ReplaceRadarColors=true},
25
35
{"m|radarcolor-multiplier=","Multiplier to radar color RGB values, if they are altered.", v =>settings.RadarColorMultiplier=v},
26
36
{"x|extraimage-bg-override","Allow overwriting background color pixels on existing extra images.", v =>settings.AllowExtraDataBGOverride=true},
37
+
{"z|zdata-fix","Adjusts z-data values on processed tiles so that any value higher than 31 on z-data is converted to 0. This is applied even if no image data is modified.", v =>settings.FixZData=true},
27
38
{"c|accurate-color-matching","Enables slower but more accurate palette color matching.", v =>settings.AccurateColorMatching=true},
28
39
{"d=|preprocess-commands","List of commands to use to preprocess images before conversion. Comma-separated list of commands consisting of executable and arguments separated by semicolon.", v =>settings.PreprocessCommands=v},
29
40
{"b|no-backups","Disable backing up the edited files with same name using file extension .old.", v =>settings.SupressBackups=true},
0 commit comments