find_console_variables
Search the Unreal Engine console variable registry by prefix to discover CVars with their types and read-only flags.
Instructions
Prefix-search the IConsoleManager registry; returns matching CVar names + types + read-only flags. Pairs with get_console_variable / set_console_variable for discovery workflows. C++ handler -- direct iteration of UE's internal console registry. Part of the language-shim experiment (PR #46): see docs/LANGUAGE-CHOICE-RETROSPECTIVE.md.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prefix | No | Optional case-sensitive prefix to filter by (e.g. 'r.Screen'). Empty / omitted = all CVars. | |
| limit | No | Cap returned variables. Default 100; hard max 1000. |