├── .gitignore ├── Binaries └── Win64 │ ├── UnrealEditor-FunctionPicker.dll │ ├── UnrealEditor-FunctionPicker.pdb │ ├── UnrealEditor-FunctionPickerEditor.dll │ ├── UnrealEditor-FunctionPickerEditor.pdb │ └── UnrealEditor.modules ├── FunctionPicker.uplugin ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source ├── FunctionPicker ├── FunctionPicker.Build.cs ├── Private │ ├── FunctionPickerData │ │ └── FunctionPicker.cpp │ └── FunctionPickerModule.cpp └── Public │ ├── FunctionPickerData │ ├── FunctionPicker.h │ └── FunctionPickerTemplate.h │ └── FunctionPickerModule.h └── FunctionPickerEditor ├── FunctionPickerEditor.Build.cs ├── Private ├── FunctionPickerEditorModule.cpp ├── FunctionPickerType │ └── FunctionPickerCustomization.cpp └── MyPropertyType │ ├── MyPropertyTypeCustomization.cpp │ ├── MyPropertyTypeCustomization.h │ ├── PropertyData.cpp │ └── PropertyData.h └── Public ├── FunctionPickerEditorModule.h └── FunctionPickerType └── FunctionPickerCustomization.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/Win64/UnrealEditor-FunctionPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Binaries/Win64/UnrealEditor-FunctionPicker.dll -------------------------------------------------------------------------------- /Binaries/Win64/UnrealEditor-FunctionPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Binaries/Win64/UnrealEditor-FunctionPicker.pdb -------------------------------------------------------------------------------- /Binaries/Win64/UnrealEditor-FunctionPickerEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Binaries/Win64/UnrealEditor-FunctionPickerEditor.dll -------------------------------------------------------------------------------- /Binaries/Win64/UnrealEditor-FunctionPickerEditor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Binaries/Win64/UnrealEditor-FunctionPickerEditor.pdb -------------------------------------------------------------------------------- /Binaries/Win64/UnrealEditor.modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Binaries/Win64/UnrealEditor.modules -------------------------------------------------------------------------------- /FunctionPicker.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/FunctionPicker.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/FunctionPicker/FunctionPicker.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/FunctionPicker.Build.cs -------------------------------------------------------------------------------- /Source/FunctionPicker/Private/FunctionPickerData/FunctionPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/Private/FunctionPickerData/FunctionPicker.cpp -------------------------------------------------------------------------------- /Source/FunctionPicker/Private/FunctionPickerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/Private/FunctionPickerModule.cpp -------------------------------------------------------------------------------- /Source/FunctionPicker/Public/FunctionPickerData/FunctionPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/Public/FunctionPickerData/FunctionPicker.h -------------------------------------------------------------------------------- /Source/FunctionPicker/Public/FunctionPickerData/FunctionPickerTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/Public/FunctionPickerData/FunctionPickerTemplate.h -------------------------------------------------------------------------------- /Source/FunctionPicker/Public/FunctionPickerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPicker/Public/FunctionPickerModule.h -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/FunctionPickerEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/FunctionPickerEditor.Build.cs -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/FunctionPickerEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/FunctionPickerEditorModule.cpp -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/FunctionPickerType/FunctionPickerCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/FunctionPickerType/FunctionPickerCustomization.cpp -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/MyPropertyType/MyPropertyTypeCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/MyPropertyType/MyPropertyTypeCustomization.cpp -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/MyPropertyType/MyPropertyTypeCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/MyPropertyType/MyPropertyTypeCustomization.h -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/MyPropertyType/PropertyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/MyPropertyType/PropertyData.cpp -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Private/MyPropertyType/PropertyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Private/MyPropertyType/PropertyData.h -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Public/FunctionPickerEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Public/FunctionPickerEditorModule.h -------------------------------------------------------------------------------- /Source/FunctionPickerEditor/Public/FunctionPickerType/FunctionPickerCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanSeliv/FunctionPicker/HEAD/Source/FunctionPickerEditor/Public/FunctionPickerType/FunctionPickerCustomization.h --------------------------------------------------------------------------------