AmbleLabsAmbleLabs Wiki
Addons & Datapacks

Custom Exterior Categories

This can be helpful when adding custom exterior models so that they are easy to find in the monitor!

  1. Create a new .json file in the path below.

data/namespace/categories/category_name.json

  1. Inside this new .json file, type the following:
{
"id": "namespace:category_name",
 "name": "CategoryName"
 }
  1. Replace category_name with whatever you want the category to be named (you NEED to use underscores and lowercase for the id). This name does not need to be translated as it will use what ever is defined in "name".

example:

{
"id": "mydatapack:police_box",
 "name": "PoliceBox"
 }