subpacks

Subpacks are configurations within the same file as your resource or behavior pack.


Location

Where subpacks can be found

example-rp-or-bp/ └─ subpacks ├─subpack1 ├─subpack2 └─ add_as_many_as_you_want
This folder is found in the root of the resource pack or behavior pack.

Adding subpacks

Subpacks are a big part of resource packs and behavior packs. They will not appear in game, unless you implement into your manifest too.

{ "format_version": 2, "header": { "description": "example pack description", "name": "example pack name", "uuid": "PACK-UUID", "version": [1,0,0] }, "modules": [ { "description": "whatever you want", "type": "data", "uuid": "PACK-UUID2", "version": [1,0,0] } ], "subpacks": [ { "folder_name": "subpack1", "name": "example "subpack display name", "memory_tier": 0 }, { "folder_name": "subpack2", "name": "example subpack display name 2", "memory_tier": 0 } ] }
There is no limit to the amount of subpacks you can add. Make sure that the "folder_name": "subpack-folder-name" (not the display name) value (in this case, "subpack-folder-name") matches the folder name in /rp-or-bp/subpacks. The value set to"name": "subpack display name" (display name) is simply the display name for the subpack that shows up in game. For more info on manifest.json, click here.
< home