├── .gitignore ├── Config └── FilterPlugin.ini ├── LICENSE ├── LiveBlueprintDebugger.uplugin ├── README.md ├── Resources └── Icon128.png ├── Source └── LiveBlueprintDebugger │ ├── LiveBlueprintDebugger.Build.cs │ ├── Private │ ├── FastPropertyInstanceInfo.cpp │ ├── FastPropertyInstanceInfo.h │ ├── LiveBlueprintDebugger.cpp │ ├── LiveBlueprintDebuggerDetailCustomization.cpp │ ├── LiveBlueprintDebuggerDetailCustomization.h │ └── LiveBlueprintDebuggerSettings.cpp │ └── Public │ ├── LiveBlueprintDebugger.h │ └── LiveBlueprintDebuggerSettings.h ├── live-blueprint-debugger.png └── project-settings.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/LICENSE -------------------------------------------------------------------------------- /LiveBlueprintDebugger.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/LiveBlueprintDebugger.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/LiveBlueprintDebugger.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/LiveBlueprintDebugger.Build.cs -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/FastPropertyInstanceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/FastPropertyInstanceInfo.cpp -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/FastPropertyInstanceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/FastPropertyInstanceInfo.h -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/LiveBlueprintDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/LiveBlueprintDebugger.cpp -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerDetailCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerDetailCustomization.cpp -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerDetailCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerDetailCustomization.h -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Private/LiveBlueprintDebuggerSettings.cpp -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Public/LiveBlueprintDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Public/LiveBlueprintDebugger.h -------------------------------------------------------------------------------- /Source/LiveBlueprintDebugger/Public/LiveBlueprintDebuggerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/Source/LiveBlueprintDebugger/Public/LiveBlueprintDebuggerSettings.h -------------------------------------------------------------------------------- /live-blueprint-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/live-blueprint-debugger.png -------------------------------------------------------------------------------- /project-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlnordin/LiveBlueprintVariableDebugging/HEAD/project-settings.png --------------------------------------------------------------------------------