Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aquanox/SubsystemBrowserPlugin
Plugin that adds a Subsystem Browser panel for Unreal Engine Editor to explore running subsystems and edit their properties.
https://github.com/aquanox/SubsystemBrowserPlugin
c-plus-plus editor-extension engine-plugins plugin subsystems ue4 ue4-plugin ue5 ue5-plugin unreal-engine unreal-engine-code-plugin unreal-engine-cpp-plugin unreal-engine-plugin
Last synced: 3 months ago
JSON representation
Plugin that adds a Subsystem Browser panel for Unreal Engine Editor to explore running subsystems and edit their properties.
- Host: GitHub
- URL: https://github.com/aquanox/SubsystemBrowserPlugin
- Owner: aquanox
- License: mit
- Created: 2021-12-04T23:53:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T08:48:42.000Z (7 months ago)
- Last Synced: 2024-08-01T03:16:21.744Z (6 months ago)
- Topics: c-plus-plus, editor-extension, engine-plugins, plugin, subsystems, ue4, ue4-plugin, ue5, ue5-plugin, unreal-engine, unreal-engine-code-plugin, unreal-engine-cpp-plugin, unreal-engine-plugin
- Language: C++
- Homepage:
- Size: 885 KB
- Stars: 291
- Watchers: 12
- Forks: 47
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ue4 - SubsystemBrowserPlugin - Exposes subsystem properties to the editor (Resources / Coding)
README
[![GitHub release](https://img.shields.io/github/release/aquanox/SubsystemBrowserPlugin.svg)](https://github.com/aquanox/SubsystemBrowserPlugin/releases)
[![GitHub license](https://img.shields.io/github/license/aquanox/SubsystemBrowserPlugin)](https://github.com/aquanox/SubsystemBrowserPlugin/blob/main/LICENSE)
[![GitHub forks](https://img.shields.io/github/forks/aquanox/SubsystemBrowserPlugin)](https://github.com/aquanox/SubsystemBrowserPlugin/network)
[![GitHub stars](https://img.shields.io/github/stars/aquanox/SubsystemBrowserPlugin)](https://github.com/aquanox/SubsystemBrowserPlugin/stargazers)
![UE4](https://img.shields.io/badge/UE4-4.25+-lightgrey)
![UE5](https://img.shields.io/badge/UE5-5.0+-lightgrey)## Subsystem Browser Plugin for Unreal Engine
Subsystems provide an easy way to extend engine functionality and implement new features while avoiding the complexity of overriding engine classes or packing multiple independent features into a single class.
Check [Programming Subsystems](https://docs.unrealengine.com/4.27/en-US/ProgrammingAndScripting/Subsystems/) article if you haven't tried them yet.With Subsystems being a great tool, Unreal Engine Editor does not have a default method to visualize them or allow changing their properties at runtime.
Plugin provides a dedicated Subsystem Browser panel to display active subsystems with property editor.
New Subsystem Settings panel provides an easy way to interact with config properties within Subsystem-derived classes without need to create a standalone UDeveloperSettings class.
## Key Features
* List of all avaiable subsystem types with search bar and customizable filters
* Engine Subsystems
* Editor Subsystems
* Game Instance Subsystems
* World Subsystems
* Local Player Subsystems
* Display active subsystems in selected worlds
* Display which module or plugin subsystems originate from
* View and modify subsystem properties with Details View (including hidden properties)
* Quick navigation to source file via "Open Source File" context menu action
* Quick actions to work with ini config settings via "Export Config", "Export to Defaults" context menu actions
* Browser panel state (chosen filters, category folders state) is saved to local editor settings
* Support for custom categories: ![Customizing Categories](https://github.com/aquanox/SubsystemBrowserPlugin/wiki/Customizing-Categories)
* Support for custom table colums: ![Customizing Columns](https://github.com/aquanox/SubsystemBrowserPlugin/wiki/Customizing-Columns)
* Support for custom tooltips: ![Customizing Tooltips](https://github.com/aquanox/SubsystemBrowserPlugin/wiki/Customizing-Tooltips)
* Various ![Metadata Specifiers](https://github.com/aquanox/SubsystemBrowserPlugin/wiki/Plugin-Metadata-Specifiers-Reference) for Subsystem classes
* Subsystem Settings Panel to interact with config properties.
## Unreal Engine VersionsPlugin compatible with 4.25-4.27, 5.0-5.4, ue5-main and can be easily modified to work with other engine versions.
## 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 new GitHub Issue requesting them or Pull Request.
## License
SubsystemBrowserPlugin is available under the MIT license. See the LICENSE file for more info.
![](Images/UE4-Preview.png)
![](Images/UE4-Search.png)
![](Images/UE4-ContextMenu.png)
![](Images/UE4-ViewOptions.png)![](Images/UE5-Preview.png)
---
Special Thanks to Unreal Source Community Discord and #cpp