Skip to content

Loads official/custom assets to Minecraft 1.7.10

License

Notifications You must be signed in to change notification settings

GTNewHorizons/TX-Loader

 
 

Repository files navigation

TX Loader

Downloads: Modrinth CurseForge

Features

  • Provides a directory which acts as any other resource pack (./config/txloader/load/)
  • Provides a directory which overrides all other assets with the same resource locations (./config/txloader/forceload/)
  • Official assets can be downloaded automatically at startup from the official Mojang servers (Mojang's Brand and Asset Guidelines are not violated this way). Pack devs can do this via a JSON config (./config/txloader/config.json), mod devs can use a builder class via glowredman.txloader.TXLoaderCore#getAssetBuilder

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
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"
  }
]

About

Loads official/custom assets to Minecraft 1.7.10

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%