├── .gitattributes ├── .gitignore ├── .gitmodules ├── BUIProjectTemplate.uproject ├── Config ├── DefaultDeviceProfiles.ini ├── DefaultEditor.ini ├── DefaultEditorPerProjectUserSettings.ini ├── DefaultEngine.ini ├── DefaultGame.ini ├── DefaultImGui.ini ├── TemplateDefs.ini └── UnrealBuildTool │ └── BuildConfiguration.xml ├── Content ├── BP_CheatManager.uasset ├── BP_DebugImGuiTest.uasset ├── BP_GameModeBase.uasset ├── BP_HUD.uasset ├── BP_PlayerController.uasset └── M_ImGuiTest.umap ├── LICENSE ├── Plugins └── ImGui │ ├── .gitignore │ ├── CHANGES.md │ ├── ImGui.uplugin │ ├── LICENSE │ ├── README.md │ ├── Resources │ └── Icon128.png │ └── Source │ ├── ImGui │ ├── 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 │ ├── CHANGELOG.txt │ ├── FAQ.md │ ├── FONTS.txt │ ├── README.md │ └── TODO.txt │ ├── ImGuiLibrary.Build.cs │ ├── ImGuiLibrary.tps │ ├── Include │ ├── imconfig.h │ └── imgui.h │ ├── LICENSE.txt │ └── Private │ ├── imgui.cpp │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── README.md ├── Source ├── BUIProjectTemplate.Target.cs ├── BUIProjectTemplate │ ├── BUIProjectTemplate.Build.cs │ ├── BUIProjectTemplateModule.cpp │ ├── BUIProjectTemplateModule.h │ ├── Core │ │ ├── BUICheatManager.cpp │ │ ├── BUICheatManager.h │ │ ├── BUIGameInstance.cpp │ │ ├── BUIGameInstance.h │ │ ├── BUIGameModeBase.cpp │ │ ├── BUIGameModeBase.h │ │ ├── BUIGameStateBase.cpp │ │ ├── BUIGameStateBase.h │ │ ├── BUIPlayerStateBase.cpp │ │ └── BUIPlayerStateBase.h │ ├── Example │ │ ├── ExampleObject.cpp │ │ └── ExampleObject.h │ ├── Save │ │ ├── BUISaveGame.cpp │ │ ├── BUISaveGame.h │ │ ├── SerializerExample.cpp │ │ └── SerializerExample.h │ └── UI │ │ ├── BUIHUDBase.cpp │ │ ├── BUIHUDBase.h │ │ ├── DebugOrderTest.cpp │ │ ├── DebugOrderTest.h │ │ └── ImGuiCommon.h ├── BUIProjectTemplateEditor.Target.cs └── BUIProjectTemplateEditor │ ├── BUIProjectTemplateEditor.Build.cs │ ├── BUIProjectTemplateEditor.cpp │ ├── BUIProjectTemplateEditor.h │ └── Tests │ ├── BUIAutomationTestBase.h │ └── SaveLoad │ ├── BUISaveLoadAutomationTestBase.cpp │ └── BUISaveLoadAutomationTestBase.h └── VS-CPP-ExportedSettings.vssettings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUIProjectTemplate.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/BUIProjectTemplate.uproject -------------------------------------------------------------------------------- /Config/DefaultDeviceProfiles.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultDeviceProfiles.ini -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultEditorPerProjectUserSettings.ini -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultImGui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/DefaultImGui.ini -------------------------------------------------------------------------------- /Config/TemplateDefs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/TemplateDefs.ini -------------------------------------------------------------------------------- /Config/UnrealBuildTool/BuildConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Config/UnrealBuildTool/BuildConfiguration.xml -------------------------------------------------------------------------------- /Content/BP_CheatManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/BP_CheatManager.uasset -------------------------------------------------------------------------------- /Content/BP_DebugImGuiTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/BP_DebugImGuiTest.uasset -------------------------------------------------------------------------------- /Content/BP_GameModeBase.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/BP_GameModeBase.uasset -------------------------------------------------------------------------------- /Content/BP_HUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/BP_HUD.uasset -------------------------------------------------------------------------------- /Content/BP_PlayerController.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/BP_PlayerController.uasset -------------------------------------------------------------------------------- /Content/M_ImGuiTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Content/M_ImGuiTest.umap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/ImGui/.gitignore: -------------------------------------------------------------------------------- 1 | /Binaries/ 2 | /Intermediate/ 3 | -------------------------------------------------------------------------------- /Plugins/ImGui/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/CHANGES.md -------------------------------------------------------------------------------- /Plugins/ImGui/ImGui.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/ImGui.uplugin -------------------------------------------------------------------------------- /Plugins/ImGui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/LICENSE -------------------------------------------------------------------------------- /Plugins/ImGui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/README.md -------------------------------------------------------------------------------- /Plugins/ImGui/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Resources/Icon128.png -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/ImGui.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/ImGui.Build.cs -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiCanvasSizeInfoCustomization.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiEditor.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiEditor.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Editor/ImGuiKeyInfoCustomization.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiContextManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiContextManager.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiContextManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiContextManager.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiContextProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiContextProxy.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiContextProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiContextProxy.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDelegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDelegates.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDelegatesContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDelegatesContainer.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDelegatesContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDelegatesContainer.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDemo.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDemo.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDrawData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDrawData.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiDrawData.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiImplementation.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiImplementation.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandler.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandlerFactory.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInputHandlerFactory.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInputState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInputState.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInputState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInputState.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInteroperability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInteroperability.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiInteroperability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiInteroperability.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModule.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleCommands.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleCommands.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleDebug.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleManager.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleManager.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleSettings.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiModuleSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiModuleSettings.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/ImGuiTextureHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/ImGuiTextureHandle.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/TextureManager.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/TextureManager.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/Arrays.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/DebugExecBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/DebugExecBindings.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/DebugExecBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/DebugExecBindings.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/Range.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/RedirectingHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/RedirectingHandle.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContext.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContext.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContextIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Utilities/WorldContextIndex.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/VersionCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/VersionCompatibility.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiCanvasControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiCanvasControl.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiCanvasControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiCanvasControl.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiLayout.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiLayout.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiWidget.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Private/Widgets/SImGuiWidget.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Public/ImGuiDelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Public/ImGuiDelegates.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Public/ImGuiInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Public/ImGuiInputHandler.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Public/ImGuiModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Public/ImGuiModule.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Public/ImGuiModuleProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Public/ImGuiModuleProperties.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ImGui/Public/ImGuiTextureHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ImGui/Public/ImGuiTextureHandle.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/CHANGELOG.txt -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/FAQ.md -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/FONTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/FONTS.txt -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/README.md -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Docs/TODO.txt -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.Build.cs -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.tps -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Include/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Include/imconfig.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Include/imgui.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/LICENSE.txt -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_demo.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_draw.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_internal.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imgui_widgets.cpp -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_rectpack.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_textedit.h -------------------------------------------------------------------------------- /Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Plugins/ImGui/Source/ThirdParty/ImGuiLibrary/Private/imstb_truetype.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Source/BUIProjectTemplate.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate.Target.cs -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/BUIProjectTemplate.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/BUIProjectTemplate.Build.cs -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/BUIProjectTemplateModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/BUIProjectTemplateModule.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/BUIProjectTemplateModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/BUIProjectTemplateModule.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUICheatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUICheatManager.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUICheatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUICheatManager.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameInstance.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameInstance.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameModeBase.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameModeBase.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameStateBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameStateBase.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIGameStateBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIGameStateBase.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIPlayerStateBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIPlayerStateBase.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Core/BUIPlayerStateBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Core/BUIPlayerStateBase.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Example/ExampleObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Example/ExampleObject.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Example/ExampleObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Example/ExampleObject.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Save/BUISaveGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Save/BUISaveGame.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Save/BUISaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Save/BUISaveGame.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Save/SerializerExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Save/SerializerExample.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/Save/SerializerExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/Save/SerializerExample.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/UI/BUIHUDBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/UI/BUIHUDBase.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/UI/BUIHUDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/UI/BUIHUDBase.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/UI/DebugOrderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/UI/DebugOrderTest.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/UI/DebugOrderTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/UI/DebugOrderTest.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplate/UI/ImGuiCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplate/UI/ImGuiCommon.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor.Target.cs -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.Build.cs -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/BUIProjectTemplateEditor.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/Tests/BUIAutomationTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/Tests/BUIAutomationTestBase.h -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/Tests/SaveLoad/BUISaveLoadAutomationTestBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/Tests/SaveLoad/BUISaveLoadAutomationTestBase.cpp -------------------------------------------------------------------------------- /Source/BUIProjectTemplateEditor/Tests/SaveLoad/BUISaveLoadAutomationTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/Source/BUIProjectTemplateEditor/Tests/SaveLoad/BUISaveLoadAutomationTestBase.h -------------------------------------------------------------------------------- /VS-CPP-ExportedSettings.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benui-dev/UE-BUIProjectTemplate/HEAD/VS-CPP-ExportedSettings.vssettings --------------------------------------------------------------------------------