├── Content ├── Fonts │ ├── Geist │ │ ├── ttf │ │ │ ├── Geist-Black.ttf │ │ │ ├── Geist-BlackItalic.ttf │ │ │ ├── Geist-Bold.ttf │ │ │ ├── Geist-BoldItalic.ttf │ │ │ ├── Geist-ExtraBold.ttf │ │ │ ├── Geist-ExtraBoldItalic.ttf │ │ │ ├── Geist-ExtraLight.ttf │ │ │ ├── Geist-ExtraLightItalic.ttf │ │ │ ├── Geist-Light.ttf │ │ │ ├── Geist-LightItalic.ttf │ │ │ ├── Geist-Medium.ttf │ │ │ ├── Geist-MediumItalic.ttf │ │ │ ├── Geist-Regular.ttf │ │ │ ├── Geist-RegularItalic.ttf │ │ │ ├── Geist-SemiBold.ttf │ │ │ ├── Geist-SemiBoldItalic.ttf │ │ │ ├── Geist-Thin.ttf │ │ │ └── Geist-ThinItalic.ttf │ │ └── variable │ │ │ ├── Geist-Italic[wght].ttf │ │ │ └── Geist[wght].ttf │ └── GeistMono │ │ ├── ttf │ │ ├── GeistMono-Black.ttf │ │ ├── GeistMono-BlackItalic.ttf │ │ ├── GeistMono-Bold.ttf │ │ ├── GeistMono-BoldItalic.ttf │ │ ├── GeistMono-ExtraBold.ttf │ │ ├── GeistMono-ExtraBoldItalic.ttf │ │ ├── GeistMono-ExtraLight.ttf │ │ ├── GeistMono-ExtraLightItalic.ttf │ │ ├── GeistMono-Italic.ttf │ │ ├── GeistMono-Light.ttf │ │ ├── GeistMono-LightItalic.ttf │ │ ├── GeistMono-Medium.ttf │ │ ├── GeistMono-MediumItalic.ttf │ │ ├── GeistMono-Regular.ttf │ │ ├── GeistMono-SemiBold.ttf │ │ ├── GeistMono-SemiBoldItalic.ttf │ │ ├── GeistMono-Thin.ttf │ │ └── GeistMono-ThinItalic.ttf │ │ └── variable │ │ ├── GeistMono-Italic[wght].ttf │ │ └── GeistMono[wght].ttf └── Python │ └── unrealgpt_mcp_import.py ├── LICENSE ├── README.md ├── Source ├── UnrealGPT │ ├── UnrealGPT.Build.cs │ ├── UnrealGPT.cpp │ └── UnrealGPT.h ├── UnrealGPTEditor │ ├── UnrealGPTAgentClient.cpp │ ├── UnrealGPTAgentClient.h │ ├── UnrealGPTComputerUse.cpp │ ├── UnrealGPTComputerUse.h │ ├── UnrealGPTEditor.Build.cs │ ├── UnrealGPTEditor.cpp │ ├── UnrealGPTEditor.h │ ├── UnrealGPTSceneContext.cpp │ ├── UnrealGPTSceneContext.h │ ├── UnrealGPTSettings.cpp │ ├── UnrealGPTSettings.h │ ├── UnrealGPTSseClient.cpp │ ├── UnrealGPTSseClient.h │ ├── UnrealGPTVoiceInput.cpp │ ├── UnrealGPTVoiceInput.h │ ├── UnrealGPTWidget.cpp │ ├── UnrealGPTWidget.h │ ├── UnrealGPTWidgetDelegateHandler.cpp │ └── UnrealGPTWidgetDelegateHandler.h └── UnrealGPTEditorTests │ ├── UnrealGPTEditorTests.Build.cs │ └── UnrealGPTEditorTests.cpp └── UnrealGPT.uplugin /Content/Fonts/Geist/ttf/Geist-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Black.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-BlackItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Bold.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-BoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-ExtraBold.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-ExtraLight.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Light.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-LightItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Medium.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-MediumItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Regular.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-RegularItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-SemiBold.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-Thin.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/ttf/Geist-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/ttf/Geist-ThinItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/variable/Geist-Italic[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/variable/Geist-Italic[wght].ttf -------------------------------------------------------------------------------- /Content/Fonts/Geist/variable/Geist[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/Geist/variable/Geist[wght].ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Black.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-BlackItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Bold.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-BoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-ExtraBold.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-ExtraLight.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Italic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Light.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-LightItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Medium.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-MediumItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Regular.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-SemiBold.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-Thin.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/ttf/GeistMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/ttf/GeistMono-ThinItalic.ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/variable/GeistMono-Italic[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/variable/GeistMono-Italic[wght].ttf -------------------------------------------------------------------------------- /Content/Fonts/GeistMono/variable/GeistMono[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Fonts/GeistMono/variable/GeistMono[wght].ttf -------------------------------------------------------------------------------- /Content/Python/unrealgpt_mcp_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Content/Python/unrealgpt_mcp_import.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/README.md -------------------------------------------------------------------------------- /Source/UnrealGPT/UnrealGPT.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPT/UnrealGPT.Build.cs -------------------------------------------------------------------------------- /Source/UnrealGPT/UnrealGPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPT/UnrealGPT.cpp -------------------------------------------------------------------------------- /Source/UnrealGPT/UnrealGPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPT/UnrealGPT.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTAgentClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTAgentClient.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTAgentClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTAgentClient.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTComputerUse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTComputerUse.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTComputerUse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTComputerUse.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTEditor.Build.cs -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTEditor.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTEditor.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSceneContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSceneContext.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSceneContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSceneContext.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSettings.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSettings.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSseClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSseClient.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTSseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTSseClient.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTVoiceInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTVoiceInput.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTVoiceInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTVoiceInput.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTWidget.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTWidget.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTWidgetDelegateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTWidgetDelegateHandler.cpp -------------------------------------------------------------------------------- /Source/UnrealGPTEditor/UnrealGPTWidgetDelegateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditor/UnrealGPTWidgetDelegateHandler.h -------------------------------------------------------------------------------- /Source/UnrealGPTEditorTests/UnrealGPTEditorTests.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditorTests/UnrealGPTEditorTests.Build.cs -------------------------------------------------------------------------------- /Source/UnrealGPTEditorTests/UnrealGPTEditorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/Source/UnrealGPTEditorTests/UnrealGPTEditorTests.cpp -------------------------------------------------------------------------------- /UnrealGPT.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TREE-Ind/Unreal-Agent/HEAD/UnrealGPT.uplugin --------------------------------------------------------------------------------