https://github.com/aquanox/slateiconreferenceplugin
Plugin that provides picker of Slate Icons in Developer Settings
https://github.com/aquanox/slateiconreferenceplugin
c-plus-plus editor-extension editor-plugin ue5-plugin unreal-engine-5 unreal-engine-plugin
Last synced: 9 months ago
JSON representation
Plugin that provides picker of Slate Icons in Developer Settings
- Host: GitHub
- URL: https://github.com/aquanox/slateiconreferenceplugin
- Owner: aquanox
- License: mit
- Created: 2025-03-30T09:44:35.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-04T07:54:12.000Z (9 months ago)
- Last Synced: 2025-04-04T08:32:37.377Z (9 months ago)
- Topics: c-plus-plus, editor-extension, editor-plugin, ue5-plugin, unreal-engine-5, unreal-engine-plugin
- Language: C++
- Homepage:
- Size: 236 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SlateIconReferencePlugin
Plugin that provides picker of Slate Icons for Developer Settings


## Examples
```c++
UCLASS(MinimalAPI, DefaultConfig)
class USlateIconRefExample : public UDeveloperSettings
{
GENERATED_BODY()
public:
// Expose icon selector with default settings
UPROPERTY(EditAnywhere, Config, Category="Examples")
FSlateIconReference IconBasic;
// Expose compact icon selector with default settings
UPROPERTY(EditAnywhere, config, Category="Examples", meta=(DisplayMode=Compact))
FSlateIconReference IconCompact;
// Expose icon selector with customized settings (Standard display without Small Icon selector)
UPROPERTY(EditAnywhere, config, Category="Examples", meta=(DisplayMode="Default,NoSmall"))
FSlateIconReference IconComplexN1;
// Expose icon selector with customized settings (Compact display with Icon and Overlay selector)
UPROPERTY(EditAnywhere, config, Category="Examples", meta=(DisplayMode="Compact,WithIcon,WithOverlay"))
FSlateIconReference IconComplexN2;
};
```
More examples can be found at `SlateIconRefExample.h`
## Supported Engine Versions
Compiles with Unreal Engine 4.27, 5.3-5.5, should work in newer engines without additional changes.
## Contributing
Please report any issues with GitHub Issues page for this repository.
If you want to suggest changes, improvements or updates to the plugin open an enhancement request issue.
## License
SlateIconReferencePlugin is available under the MIT license. See the LICENSE file for more info.