> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/SnowyMouse/chimera/llms.txt
> Use this file to discover all available pages before exploring further.

# Visual Commands

> Commands to customize visual settings and display options

Visual commands allow you to customize how Halo looks and performs, including field of view, resolution fixes, and performance overlays.

## Field of View

### chimera\_fov

Set your field of view. End with "v" to lock to a vertical FoV, or use "auto" for automatic FoV.

<ParamField path="degrees" type="number | string">
  Field of view in degrees, or "auto" for automatic FoV. Append "v" for vertical FoV (e.g., "90v")
</ParamField>

```bash theme={null}
chimera_fov 90        # Set to 90 degrees horizontal
chimera_fov 90v       # Set to 90 degrees vertical (recommended)
chimera_fov auto      # Automatic FoV
```

<Info>
  Using vertical FoV helps prevent distortion when switching aspect ratios.
</Info>

### chimera\_fov\_cinematic

Set FoV specifically for cinematic sequences. Falls back to `chimera_fov` if not set.

<ParamField path="degrees" type="number | string">
  Field of view for cinematics
</ParamField>

```bash theme={null}
chimera_fov_cinematic 70v
```

### chimera\_fov\_vehicle

Set FoV specifically for vehicle views. Falls back to `chimera_fov` if not set.

<ParamField path="degrees" type="number | string">
  Field of view for vehicles
</ParamField>

```bash theme={null}
chimera_fov_vehicle 100v
```

### chimera\_lock\_fp\_model\_fov

Prevents the game from scaling first-person weapon model FoV with camera FoV changes.

<ParamField path="enabled" type="boolean">
  true to lock first-person model FoV, false to allow scaling
</ParamField>

```bash theme={null}
chimera_lock_fp_model_fov true
```

## Widescreen & Resolution

### chimera\_widescreen\_fix

Fix scaling of HUD, menu, and text elements for wider aspect ratios.

<ParamField path="mode" type="0 | 1 | 2 | 3">
  * `0`: Disabled
  * `1`: HUD fills the screen
  * `2`: HUD restricted to center 4:3 area
  * `3`: HUD restricted to center 16:9 area
</ParamField>

```bash theme={null}
chimera_widescreen_fix 1  # Fill screen
chimera_widescreen_fix 3  # 16:9 center area (recommended for ultrawide)
```

<Warning>
  This may break some custom maps that have non-standard HUD layouts.
</Warning>

### chimera\_safe\_zones

Sets safe zone sizes for HUD margins. Values are clamped between stock PC values (8, 8) and stock Xbox values (48, 36).

<ParamField path="horizontal" type="number">
  Horizontal margin (8-48)
</ParamField>

<ParamField path="vertical" type="number">
  Vertical margin (8-36)
</ParamField>

```bash theme={null}
chimera_safe_zones 16 12    # Custom margins
chimera_safe_zones off      # Disable
```

## Performance Overlays

### chimera\_show\_fps

Display your current frames per second on screen.

<ParamField path="enabled" type="boolean">
  true to show FPS, false to hide
</ParamField>

```bash theme={null}
chimera_show_fps true
```

### chimera\_throttle\_fps

Limit Halo's frame rate to a specific value.

<ParamField path="fps" type="number">
  Maximum FPS, or 0 to disable throttling
</ParamField>

```bash theme={null}
chimera_throttle_fps 144    # Cap at 144 FPS
chimera_throttle_fps 0      # Unlimited
```

### chimera\_uncap\_cinematic

Remove the 30 FPS cap from cinematic sequences.

<ParamField path="enabled" type="boolean">
  true to uncap, false to keep 30 FPS limit
</ParamField>

```bash theme={null}
chimera_uncap_cinematic true
```

## Graphics Quality

### chimera\_af

Enable anisotropic filtering for improved texture quality. Applies to both level geometry and individual objects.

<ParamField path="level" type="number | boolean">
  Filtering level (typically 2, 4, 8, or 16), or true/false to enable/disable
</ParamField>

```bash theme={null}
chimera_af 16        # 16x anisotropic filtering (recommended)
chimera_af true      # Enable with default level
chimera_af false     # Disable
```

### chimera\_model\_detail

Force highest LOD (level of detail) for all models. The cryotube model always scales by 480p to prevent the "4K headless chief" glitch.

<ParamField path="enabled" type="boolean">
  true to force highest detail, false for normal behavior
</ParamField>

```bash theme={null}
chimera_model_detail true
```

### chimera\_force\_alternate\_bump\_attenuation

Force alternate bump attenuation method for environmental bump mapping.

<ParamField path="enabled" type="boolean">
  true to force alternate method, false to use standard method
</ParamField>

```bash theme={null}
chimera_force_alternate_bump_attenuation true
```

## HUD Modifications

### chimera\_split\_screen\_hud

Override the HUD with the split screen HUD layout.

<ParamField path="enabled" type="boolean">
  true to use split screen HUD, false for normal HUD
</ParamField>

```bash theme={null}
chimera_split_screen_hud true
```

## Visual Effects

### chimera\_block\_zoom\_blur

Remove the blur effect when zoomed in with scoped weapons.

<ParamField path="enabled" type="boolean">
  true to block zoom blur, false to allow it
</ParamField>

```bash theme={null}
chimera_block_zoom_blur true
```

### chimera\_block\_letterbox

Disable the letterbox effect during cutscenes.

<ParamField path="enabled" type="boolean">
  true to block letterbox, false to allow it
</ParamField>

```bash theme={null}
chimera_block_letterbox true
```

### chimera\_block\_multitexture\_overlays

Disable multitexture overlays (animated sniper scope ticks). Useful since most sniper scope tags are broken and misaligned.

<ParamField path="enabled" type="boolean">
  true to block overlays, false to allow them
</ParamField>

```bash theme={null}
chimera_block_multitexture_overlays true
```

## UI Elements

### chimera\_block\_gametype\_indicator

Hide the gametype indicator that wasn't present in the original Xbox version.

<ParamField path="enabled" type="boolean">
  true to hide indicator, false to show it
</ParamField>

```bash theme={null}
chimera_block_gametype_indicator true
```

### chimera\_block\_loading\_screen

Disable the blinding loading screen when joining servers to prevent cheap deaths.

<ParamField path="enabled" type="boolean">
  true to block loading screen, false to show it
</ParamField>

```bash theme={null}
chimera_block_loading_screen true
```

### chimera\_block\_hold\_f1

Hide the "Hold F1 for score" message when joining servers.

<ParamField path="enabled" type="boolean">
  true to hide message, false to show it
</ParamField>

```bash theme={null}
chimera_block_hold_f1 true
```

### chimera\_block\_gametype\_rules

Hide the gametype rules display that appears briefly when joining Custom Edition servers.

<ParamField path="enabled" type="boolean">
  true to hide rules, false to show them
</ParamField>

```bash theme={null}
chimera_block_gametype_rules true
```

### chimera\_block\_button\_quotes

Remove quotation marks from button prompts (e.g., changes 'Hold "E"' to 'Hold E').

<ParamField path="enabled" type="boolean">
  true to remove quotes, false to keep them
</ParamField>

```bash theme={null}
chimera_block_button_quotes true
```

### chimera\_block\_server\_ip

Hide the server IP from the score screen. Useful for streamers.

<ParamField path="enabled" type="boolean">
  true to hide IP, false to show it
</ParamField>

```bash theme={null}
chimera_block_server_ip true
```

## Console Customization

### chimera\_console\_prompt\_color

Set the color of console input text.

<ParamField path="red" type="number">
  Red component (0-255)
</ParamField>

<ParamField path="green" type="number">
  Green component (0-255)
</ParamField>

<ParamField path="blue" type="number">
  Blue component (0-255)
</ParamField>

```bash theme={null}
chimera_console_prompt_color 0 255 0      # Green
chimera_console_prompt_color 255 255 0    # Yellow
```

## Equipment & Item Display

### chimera\_block\_equipment\_rotation

Disable the netgame equipment rotation added in Halo PC to match Xbox appearance.

<ParamField path="enabled" type="boolean">
  true to disable rotation, false to allow it
</ParamField>

```bash theme={null}
chimera_block_equipment_rotation true
```

### chimera\_shrink\_empty\_weapons

Make empty weapons appear smaller so they're easier to identify and avoid.

<ParamField path="enabled" type="boolean">
  true to shrink empty weapons, false for normal size
</ParamField>

```bash theme={null}
chimera_shrink_empty_weapons true
```
