Rendering Configuration (Tokens)
| Token Name | Type | Default Value | Accepted Values | Category | Description |
|---|---|---|---|---|---|
| FX_Override | STRING | NULL | N/A | Rendering Configuration | FX override file. |
| PagedHieTexSkipLevelMin | INT | -1 | INT_MIN to INT_MAX, inclusive | Rendering Configuration | Skip loading of AT LEAST this many of the highest-res MIP levels for baked bins. If -1, the value of TexSkipLevelMin is used. See also: TexSkipLevelMin, TexSkipLevelClamp, TexSkipLevelThreshold. |
| SeasonControlFXFile | STRING | DB/DB_SYSTEM/DB_SYS_DATA/PAGED_FEATURES/season.fx | N/A | Rendering Configuration | |
| ShaderPath | STRING | AUTO | N/A | Rendering Configuration | Path to the folder containing shader code. |
| TargetTexSkipLevelMin | INT | -1 | INT_MIN to INT_MAX, inclusive | Rendering Configuration | Skip loading of AT LEAST this many of the highest-res MIP levels for moving models. If -1, the value of TexSkipLevelMin is used. See also: TexSkipLevelMin, TexSkipLevelClamp, TexSkipLevelThreshold. |
| TexSkipLevelClamp | UNSIGNED INT | 4 | 0 to UINT_MAX, inclusive | Rendering Configuration | Skip loading of NO MORE THAN this many of the highest-res MIP levels. Motivation: Bakery can request skipping more levels per texture than TexSkipLevelMin, and this provides a global way to clamp those skip requests. See also: TexSkipLevelMin, TexSkipLevelThreshold. |
| TexSkipLevelMin | UNSIGNED INT | 0 | 0 to UINT_MAX, inclusive | Rendering Configuration | Skip loading of AT LEAST this many of the highest-res MIP levels. See also: TargetTexSkipLevelMin, PagedHieTexSkipLevelMin, TexSkipLevelClamp, TexSkipLevelThreshold. |
| TexSkipLevelThreshold | UNSIGNED INT | 10 | 0 to UINT_MAX, inclusive | Rendering Configuration | Do NOT ever allow skipping levels with resolution less than or equal to 2N, where N is given by TexSkipLevelThreshold. See also: TexSkipLevelMin, TexSkipLevelClamp. |