├── .gitignore ├── Content └── BPML_ImGui.uasset ├── ImGui.uplugin ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source ├── ImGui ├── BP │ ├── ImGuiBPFL.cpp │ ├── ImGuiBPFL.h │ └── ImGuiEnums.h ├── ImGui.Build.cs ├── Private │ ├── Editor │ │ ├── ImGuiCanvasSizeInfoCustomization.cpp │ │ ├── ImGuiCanvasSizeInfoCustomization.h │ │ ├── ImGuiEditor.cpp │ │ ├── ImGuiEditor.h │ │ ├── ImGuiKeyInfoCustomization.cpp │ │ └── ImGuiKeyInfoCustomization.h │ ├── ImGuiContextManager.cpp │ ├── ImGuiContextManager.h │ ├── ImGuiContextProxy.cpp │ ├── ImGuiContextProxy.h │ ├── ImGuiDelegates.cpp │ ├── ImGuiDelegatesContainer.cpp │ ├── ImGuiDelegatesContainer.h │ ├── ImGuiDemo.cpp │ ├── ImGuiDemo.h │ ├── ImGuiDrawData.cpp │ ├── ImGuiDrawData.h │ ├── ImGuiImplementation.cpp │ ├── ImGuiImplementation.h │ ├── ImGuiInputHandler.cpp │ ├── ImGuiInputHandlerFactory.cpp │ ├── ImGuiInputHandlerFactory.h │ ├── ImGuiInputState.cpp │ ├── ImGuiInputState.h │ ├── ImGuiInteroperability.cpp │ ├── ImGuiInteroperability.h │ ├── ImGuiModule.cpp │ ├── ImGuiModuleCommands.cpp │ ├── ImGuiModuleCommands.h │ ├── ImGuiModuleDebug.h │ ├── ImGuiModuleManager.cpp │ ├── ImGuiModuleManager.h │ ├── ImGuiModuleSettings.cpp │ ├── ImGuiModuleSettings.h │ ├── ImGuiTextureHandle.cpp │ ├── TextureManager.cpp │ ├── TextureManager.h │ ├── Utilities │ │ ├── Arrays.h │ │ ├── DebugExecBindings.cpp │ │ ├── DebugExecBindings.h │ │ ├── Range.h │ │ ├── RedirectingHandle.h │ │ ├── WorldContext.cpp │ │ ├── WorldContext.h │ │ └── WorldContextIndex.h │ ├── VersionCompatibility.h │ └── Widgets │ │ ├── SImGuiCanvasControl.cpp │ │ ├── SImGuiCanvasControl.h │ │ ├── SImGuiLayout.cpp │ │ ├── SImGuiLayout.h │ │ ├── SImGuiWidget.cpp │ │ └── SImGuiWidget.h └── Public │ ├── ImGuiDelegates.h │ ├── ImGuiInputHandler.h │ ├── ImGuiModule.h │ ├── ImGuiModuleProperties.h │ └── ImGuiTextureHandle.h └── ThirdParty └── ImGuiLibrary ├── Docs ├── BACKENDS.md ├── CHANGELOG.txt ├── EXAMPLES.md ├── FAQ.md ├── FONTS.md ├── README.md └── TODO.txt ├── ImGuiLibrary.Build.cs ├── ImGuiLibrary.tps ├── Include ├── imconfig.h ├── imgui.h ├── imgui_internal.h └── imstb_textedit.h ├── LICENSE.txt └── Private ├── imgui.cpp ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h └── imstb_truetype.h /.gitignore: -------------------------------------------------------------------------------- 1 | /Binaries/ 2 | /Intermediate/ 3 | -------------------------------------------------------------------------------- /Content/BPML_ImGui.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Content/BPML_ImGui.uasset -------------------------------------------------------------------------------- /ImGui.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/ImGui.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/ImGui/BP/ImGuiBPFL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/BP/ImGuiBPFL.cpp -------------------------------------------------------------------------------- /Source/ImGui/BP/ImGuiBPFL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/BP/ImGuiBPFL.h -------------------------------------------------------------------------------- /Source/ImGui/BP/ImGuiEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/BP/ImGuiEnums.h -------------------------------------------------------------------------------- /Source/ImGui/ImGui.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/ImGui.Build.cs -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiEditor.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiEditor.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiContextManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiContextManager.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiContextManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiContextManager.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiContextProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiContextProxy.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiContextProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiContextProxy.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDelegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDelegates.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDelegatesContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDelegatesContainer.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDelegatesContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDelegatesContainer.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDemo.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDemo.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDrawData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDrawData.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiDrawData.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiImplementation.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiImplementation.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInputHandler.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInputHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInputHandlerFactory.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInputHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInputHandlerFactory.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInputState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInputState.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInputState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInputState.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInteroperability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInteroperability.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiInteroperability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiInteroperability.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModule.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleCommands.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleCommands.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleDebug.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleManager.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleManager.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleSettings.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiModuleSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiModuleSettings.h -------------------------------------------------------------------------------- /Source/ImGui/Private/ImGuiTextureHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/ImGuiTextureHandle.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/TextureManager.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/TextureManager.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/Arrays.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/DebugExecBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/DebugExecBindings.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/DebugExecBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/DebugExecBindings.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/Range.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/RedirectingHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/RedirectingHandle.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/WorldContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/WorldContext.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/WorldContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/WorldContext.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Utilities/WorldContextIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Utilities/WorldContextIndex.h -------------------------------------------------------------------------------- /Source/ImGui/Private/VersionCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/VersionCompatibility.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiCanvasControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiCanvasControl.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiCanvasControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiCanvasControl.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiLayout.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiLayout.h -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiWidget.cpp -------------------------------------------------------------------------------- /Source/ImGui/Private/Widgets/SImGuiWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Private/Widgets/SImGuiWidget.h -------------------------------------------------------------------------------- /Source/ImGui/Public/ImGuiDelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Public/ImGuiDelegates.h -------------------------------------------------------------------------------- /Source/ImGui/Public/ImGuiInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Public/ImGuiInputHandler.h -------------------------------------------------------------------------------- /Source/ImGui/Public/ImGuiModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Public/ImGuiModule.h -------------------------------------------------------------------------------- /Source/ImGui/Public/ImGuiModuleProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Public/ImGuiModuleProperties.h -------------------------------------------------------------------------------- /Source/ImGui/Public/ImGuiTextureHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ImGui/Public/ImGuiTextureHandle.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/BACKENDS.md -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/CHANGELOG.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/EXAMPLES.md -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/FAQ.md -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/FONTS.md -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Docs/TODO.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.tps -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Include/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Include/imconfig.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Include/imgui.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Include/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Include/imgui_internal.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Include/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Include/imstb_textedit.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/LICENSE.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imgui.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imgui_demo.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imgui_draw.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imgui_tables.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imgui_widgets.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imstb_rectpack.h -------------------------------------------------------------------------------- /Source/ThirdParty/ImGuiLibrary/Private/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleeptightAnsiC/ImGui-for-Blueprints/HEAD/Source/ThirdParty/ImGuiLibrary/Private/imstb_truetype.h --------------------------------------------------------------------------------