-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c411c9
commit cf2e846
Showing
4 changed files
with
88 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Tools | ||
tools/ | ||
|
||
# Texture assets | ||
*.ase | ||
*.psd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
pack_directory = 'main' | ||
output_file_path = '/tmp/pack.zip' | ||
# Global options | ||
recompress_compressed_files = true | ||
zip_compression_iterations = 5 | ||
automatic_minecraft_quirks_detection = true | ||
work_around_minecraft_quirks = ['grayscale_images_gamma_miscorrection', 'restrictive_banner_layer_texture_format_check', 'bad_entity_eye_layer_texture_transparency_blending', 'java8_zip_parsing'] | ||
automatic_asset_types_mask_detection = true | ||
allow_mods = ['OptiFine', 'Minecraft Transit Railway 3'] | ||
validate_pack_metadata_file = true | ||
ignore_system_and_hidden_files = false | ||
zip_spec_conformance_level = 'disregard' | ||
size_increasing_zip_obfuscation = true | ||
percentage_of_zip_structures_tuned_for_obfuscation_discretion = 100 | ||
never_store_squash_times = true | ||
# System dependent values | ||
threads = 4 | ||
spooling_buffers_size = 256 # MiB | ||
|
||
# --- Per-file options --- | ||
|
||
# Ogg files do not get transcoded | ||
['**/*?.ogg'] | ||
transcode_ogg = false | ||
|
||
# JSON files with comments get prettified and nothing is removed from them | ||
['**/*?.jsonc'] | ||
minify_json = false | ||
delete_bloat_keys = false | ||
|
||
# Do not allow comments in any JSON file. | ||
# Comments may be an useful JSON extension for documentation purposes, so | ||
# please avoid blindly copying and pasting this unless you really want to | ||
# limit their usage to .jsonc, .jemc, .jpmc, .mcmetac and .bbmodelc files! | ||
['**/*?.{json,jem,jpm,mcmeta,bbmodel}'] | ||
always_allow_json_comments = false | ||
|
||
# Quantize big natural-looking image, doing the highest quality dither | ||
['assets/craftmine/textures/landscape.png'] | ||
color_quantization_target = 'eight_bit_depth' | ||
color_quantization_dithering_level = 1 | ||
|
||
|
||
['**/*?.png'] | ||
image_data_compression_iterations = 15 | ||
color_quantization_target = 'none' | ||
skip_alpha_optimizations = true | ||
maximum_width_and_height = 4096 | ||
|
||
# Don't minify shaders | ||
['**/*?.{fsh,vsh,glsl}'] | ||
shader_source_transformation_strategy = 'keep_as_is' | ||
# minify_shader = false | ||
# keep_shader = true | ||
|
||
# Don't touch Minecraft 1.12.2 or older language files | ||
['**/*?.lang'] | ||
minify_legacy_language = false | ||
strip_legacy_language_bom = false | ||
|
||
# Don't minify properties files | ||
['**/*?.properties'] | ||
minify_properties = false | ||
|
||
# Don't minify an example command function. | ||
# Note that command functions are only accepted in data packs, and | ||
# data packs do not contain other file types shown throughout this | ||
# example file! | ||
['data/craftmine/functions/main.mcfunction'] | ||
minify_command_function = false | ||
|
||
# Include copyright and authorship information files in any directory. | ||
# More information: | ||
# https://www.gnu.org/prep/maintain/html_node/License-Notices.html | ||
# https://www.gnu.org/prep/maintain/html_node/Recording-Contributors.html | ||
['**/{COPYING,AUTHORS}'] | ||
['assets/atlases/*?.json'] | ||
force_include = true |