-
Notifications
You must be signed in to change notification settings - Fork 35
Tutorial: Resource Packs
OreCruncher edited this page Dec 21, 2016
·
9 revisions
This tutorial assumes the following:
- You know how to create a Resource Pack.
- You are familiar with how to create a Dynamic Surroundings configuration file.
Configuration files are loaded and applied in a very specific order. Keep this in mind when building/testing your Resource Pack.
- Built-in configuration files for each mod is applied in load order.
- Resource Pack configuration files are then applied. These configurations can override the configurations in step #1.
- External configuration files are applied in the order specified in the
dsurround.cfg
file. These conifigurations can override the configurations in step #1 and #2.
Adding a configuration script to your Resource Pack is pretty straight forward:
- Create a path in your pack
/assets/dsurround/
. - Create a file
configure.json
in that path. - Edit
configure.json
with the settings you need. - Package your Resource Pack and ship!
- Profit!
- Only configured resource packs are scanned when the client starts up. If you enable/disable the resource pack on the fly you will need to reload the Minecraft client to pick up any scripts or you will have to issue the
/ds reload
command.