Respackopts/docs/ToggleFilesWithFallback.md

32 lines
950 B
Markdown
Raw Normal View History

2021-09-15 15:17:32 +02:00
# Switch between two files
2021-08-30 15:03:33 +02:00
This is a simple `IF` statement simply returning true/false to if the texture/file should be loaded into the pack.
2021-08-30 14:38:03 +02:00
(Pick one file over another).
2021-08-30 15:03:33 +02:00
You will need the `Pack ID` and `Entry Name` from your `/assets/respackopts/conf.json` that you created earlier
2021-08-30 14:38:03 +02:00
if you have not, see [Main Config](./MainConfig.md) on how to do so.
<br>
2021-08-30 15:03:33 +02:00
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 directory (folder).
2021-08-30 14:38:03 +02:00
<br>
### Examples:
`texture.png` would be `texture.png.rpo`<br>
`SomeRecipe.json` would be `SomeRecipe.json.rpo`
<br>
### Layout:
```json
{
2021-08-30 15:03:33 +02:00
"condition": "<pack id>:<entry name>",
2021-08-30 14:38:03 +02:00
"fallback": "location/of/the/file"
}
```
### Example:
```json
{
2021-08-30 15:03:33 +02:00
"condition": "examplePack:someTexture",
"fallback": "assets/minecraft/textures/example/alternate.png"
2021-08-30 14:38:03 +02:00
}
```
2021-09-15 15:17:32 +02:00
See [Toggle Files ](./ToggleFiles.md) to see how to just disable files.