glowredman / TX-Loader

Loads official/custom assets to Minecraft 1.7.10 and 1.12.2
GNU Lesser General Public License v3.0
2 stars 6 forks source link

TX Loader

Downloads: Modrinth CurseForge

Features

Config Format

Field Type Default Value Description
resourceLocation String Source path
resourceLocationOverride String null Destination path, if you want it to be different from the source path
forceLoad boolean false If true, this asset will be prioritized over assets from other resource packs
source Source ASSET Use CLIENT for everything found in the client jar, SERVER for everything found in the server jar and ASSET for everything else
version String latest release The version from which this asset should be taken(valid versions can be found here)
It is recommended to populate this field

Example config:

[
  {
    "resourceLocation": "minecraft/lang/en_us.json",
    "version": "1.19.2"
  },
  {
    "resourceLocation": "minecraft/sounds/block/netherrack/break1.ogg",
    "resourceLocationOverride": "minecraft/sounds/block/netherrack/step1.ogg",
    "forceLoad": true,
    "version": "1.18"
  },
  {
    "resourceLocation": "minecraft/textures/items/porkchop_cooked.png",
    "resourceLocationOverride": "baconmod:textures/items/bacon.png",
    "source": "ASSET",
    "version": "1.7.10"
  }
]