Skip to content

guitarfreak/PropertyWatcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Property Watcher

A runtime variable watch window for Unreal Engine using ImGui.

Info

Uses the Unreal Engine metadata system to display class variables/functions like a debugger watch window. You need to give it some initial objects/structs like gamestate/playercontroller/level and then you can branch out from there.

Can be useful if you quickly want to check some data and you don't want to spend the time to write printfs or create other widgets to display information.

Also works in development builds.

How to use

Copy PropertyWatcher.h and PropertyWatcher.cpp into your project source folder. See PropertyWatcher.h for some example usage code.

Needs ImGui to work, check Github for an Unreal ImGui backend plugin.
For example, there is this or this.

Features:

  • Manipulate primitive variables via ImGui widgets.
  • Watch window to remember variables.
  • Advanced search and filtering.
  • Subtree inlining.
  • Actors tab where you can display all actors or filter actors in a radius around the player.

Future ideas:

  • Goto next search result.
  • Display value changes with colored animations in realtime.
  • Show actor component and widget hierarchy.
  • Custom draw functions for items.
  • Detachable tabs / multiple watch windows. (ImGui viewports?)
  • Copy/paste full subgraph via json serialization.
  • Call functions via node connections.
  • Memory snapshots.
  • More variable manipulation, e.g.: add/remove/rearrange items in arrays.

Gallery

(Color theme is a modified version of Blender Dark [Improvised] from ImguiCandy)

Handled types overview Filtered search Array inline
Actor search Watch window Inlining

Releases

No releases published

Packages

No packages published

Languages