Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SourceCode/EngineChanges/key_bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ The command names are the names used by `CommandMap.ini` unless the entry is mar
| `STEP_FRAME` | <kbd>O</kbd> | Observer | Advances one frame and pauses again in non-multiplayer games. |
| `STEP_FRAME_ALT` | <kbd>Shift</kbd>+<kbd>O</kbd> | Everywhere | Alternate frame-step binding that can be used while playing. |
| `SELECT_NEXT_IDLE_WORKER` | <kbd>Ctrl</kbd>+<kbd>I</kbd> | Game | Selects the next idle worker for the observed or local player. |
| `TAKE_SCREENSHOT` | <kbd>F12</kbd> | Everywhere | Saves a JPEG screenshot with a timestamped filename in the user data `Screenshots` folder. JPEG quality is controlled by [`JPEGQuality`](options_ini). |
| `TAKE_SCREENSHOT_PNG` | <kbd>Ctrl</kbd>+<kbd>F12</kbd> | Everywhere | Saves a lossless PNG screenshot with a timestamped filename in the user data `Screenshots` folder. |

## Default-Only Controls

Expand Down
1 change: 1 addition & 0 deletions SourceCode/EngineChanges/options_ini.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Boolean values are written as `yes` or `no`; parsing is case-insensitive.
| `TextureFilter` | `None`, `Point`, `Bilinear`, `Trilinear`, `Anisotropic` | `Bilinear` | Selects the global texture filtering mode. Invalid names fall back to `None`. |
| `AnisotropyLevel` | Practical values are `2`, `4`, `8`, `16` | `2` | Selects anisotropic filtering level. Other integer values are clamped to `2` through `16` and rounded down to the highest supported power of two. |
| `ResolutionFontAdjustment` | Non-negative number. `100` means 100%. | Unset | Overrides the `GlobalLanguage.ini` resolution font adjustment. Negative values or an absent key use the `GlobalLanguage.ini` setting. |
| `JPEGQuality` | `1` through `95`; values are clamped | `80` | Controls JPEG screenshot quality; PNG is unaffected. |

## Shell and UI

Expand Down
Loading