# ResPackOpts Toggle Files (Bolean Based logic) This is a simple `IF` satment 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 `PackID` and `EntryName` from your `/assets/respackopts/conf.json` that you created earlier if you have not, see [Main Config](./MainConfig.md) on how to do so.
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).
### Examples: `texture.png` would be `texture.png.rpo`
`SomeRecipe.json` would be `SomeRecipe.json.rpo`
### Layout: ```json { "condition": ":" } ``` ### Example: ```json { "condition": "ExamplePack:SomeTexture" } ``` --- ### See [Toggle Files With Fallback](./ToggleFilesWithFallback.md) to see how to swap textures out with each other (alternate Options)