Install
openclaw skills install ue-code-searchSearch Unreal Engine C++ and Blueprint code. Use when: (1) Finding function definitions, (2) Searching for class names, (3) Finding UMG widget references, (4) Searching Lua/UnLua code, (5) Finding Blueprint-usable functions, (6) Searching across C++ and Lua
openclaw skills install ue-code-searchProject\Source\ - Main C++ modulesProject\Plugins\*\Source\ - Plugin C++ codeProject\Content\Script\ - All Lua scriptsGlobal/GlobalSystem/ - Core systemsModule/MainModule_*/ - Main modulesModule/CommonSubModule/ - Common submodules.uasset - Unreal assets (search in blueprints, materials).umap - Map filesSelect-String -Path "*.cpp" -Pattern "FunctionName"
Select-String -Path "*.lua" -Pattern "function.*FunctionName"
Select-String -Path "*.lua" -Pattern "ASomeClass"
Select-String -Path "*.cpp" -Pattern "SomeClass::"
Select-String -Path "*.lua" -Pattern "c_UMG_"
Select-String -Path "*.lua" -Pattern "UMG_"
Select-String -Path "*.lua" -Pattern "SendPak"
Select-String -Path "*.lua" -Pattern "NetWork:Send"
MainModule_BigWorld - Main game moduleMainModule_VersionUpdate - Version/update moduleMainModule_Login - Login moduleNetWorkManager - Network managementModuleManager - Module switchingg_ModuleManager.lua - Module managementg_NetWorkManager.lua - Network managerg_UIManager.lua - UI managementMainLevelSwitcher.lua - Level/screen switchingProvide: