Skip to content

import_formatting.json

Embin edited this page Dec 19, 2024 · 2 revisions

The import_formatting.json file is used by the game to determine how to format the texture names of certain textures in certain folders.

You can view the vanilla import_formatting.json file here.

Basic file structure

Each specific texture or folder you want formatted is their own object, containing options on how to format the texture's name.

{
  "folder/":{
    "prefix":"soupy_",
    "suffix":"",
    "apply_to_sub_directories":true,
    "include_base_in_name":false
  },
  "specific_texture":{
    "prefix":"misc/",
    "suffix":"_of_doom",
    "apply_to_sub_directories":true,
    "include_base_in_name":false
  }
}

todo: finish this

Clone this wiki locally