Respackopts/docs/ToggleFiles.md
2021-09-09 17:20:14 +02:00

31 lines
925 B
Markdown

# ResPackOpts Toggle Files (Boolean-based logic)
This is a simple `IF` statement simply returning true/false to if the texture/file should be loaded into the pack.
(Turns the texture "on" or "off").
You will need the `Pack ID` and `Entry Name` from your `/assets/respackopts/conf.json` that you created earlier
if you have not, see [Main Config](./MainConfig.md) on how to do so.
<br>
You will need to navigate to the file you would like to toggle inside your resource, and create a `.rpo` file for it in the same folder(directory).
<br>
### Examples:
`texture.png` would be `texture.png.rpo`<br>
`recipe.json` would be `recipe.json.rpo`
<br>
### Layout:
```json
{
"condition": "<pack id>:<entry name>"
}
```
### Example:
```json
{
"condition": "examplePack:someTexture"
}
```
### See [Toggle Files With Fallback](./ToggleFilesWithFallback.md) to see how to swap textures out with each other (alternate Options)