Live Viewer

The Live Viewer is a tool that allows you to search, view, edit & watch the properties of every object making it very powerful for debugging mods or figuring out how values are changed during runtime. Note however that it cannot show unreflected data.

In order to see it, you must make sure that the following configuration settings are set to 1:

  • GuiConsoleEnabled
  • GuiConsoleVisible

If you are having any issues seeing the window, for example if it opens as blanked out/white, you can change the GraphicsAPI setting, for example to dx11.

Sometimes the font is too small to easily see (particularly on larger resolutions). You can edit the GuiConsoleFontScaling setting to change this.

live-viewer

You can right-click the search bar to show options.

live-viewer search options

SettingExplanation
Refresh searchRefreshes the search results.
Save filtersSaves the current search filters to Win64/UE4SS-config/liveview/filters.meta.json. Saved filters are loaded when the game is next launched.
Apply when not searchingChanges the search results automatically, otherwise, you need to press refresh settings.
Include inheritanceIncludes any child objects of any search results.
Instances onlyOnly includes object instances. These are objects present in the level as part of actors (actors themselves, widgets, components etc.), and their properties are a reflection of the real-time values. Examples include <package name>_C or <package name>_C_<some instance id>.
Non-instances onlyOnly includes the default state of object packages, which are loaded in memory but are not present in the level. You cannot change the values of these properties.
CDOs onlyOnly includes the class default objects (CDOs), which are the reflected properties inherited by non-instances from a UClass object. Examples include <full path>_GEN_VARIABLE or <package path>.Default__<package name>.
Include CDOsIncludes CDOs in any of your search criteria.
Use Regex for searchAllows you to use regex to make more specific searches.
Exclude class namesAllows you to exclude specific class names, e.g., CanvasPanelSlot or StaticMeshComponent. Comma seperated list, e.g., CanvasPanelSlot, StaticMeshComponent,Package , Function.
Include class namesAccessible by exclude class names dropdown. Allows you to include only specific class names, e.g., CanvasPanelSlot or StaticMeshComponent. Comma seperated list, e.g., CanvasPanelSlot, StaticMeshComponent,Package , Function.
Has propertyFinds objects only if they have a property of a specific name, e.g., Player Name. This setting is applied only if you have entered any value in the search bar.
Has property typeFinds objects only if they have a property of a specific type, such as BoolProperty or MulticastInlineDelegateProperty.
Function parameter flagsClicking on this checkbox opens a new popup. Allows you to select any number of flags to filter functions by and whether or not you want it to use your selected flags to check for the return flag

In the property viewer pane at the bottom, there are three sub-controls:

  • << which goes backwards through your history.
  • >> which goes forwards through your history.
  • Find functions which opens a window to search for and call any functions associated with this object and any of its children. You can use this to test calling functions in-game without having to write any code.

property view controls find functions

Watches

You can right click most property types, and functions, to add a watch.

add watch

To view your watches, go into the watches tab.

Click the plus buttons on the left of each watch to expand the values box.

expand watch values

On the left side of the watch, there are two checkboxes:

  • Enable/disable watch
  • Write the watch to a file. If this is enabled, when you close the game, the values from your watche will be saved as a text file in Win64/watches/.

On the right side of the watch, there is an option to save the watch which will be automatically re-added when you restart the game. This data is stored inside of Win64/watches/watches.meta.json

save watch method of watch re-aquisition