All settings live under Editor Preferences > Plugins > Unreal Engine Absolute Blueprint
Organizer.
Shortcuts
| Setting | Default | Meaning |
|---|
| Organize Graph Chord | Ctrl+Alt+L | Organizes the graph currently in focus. |
| Organize Blueprint Chord | Ctrl+Alt+Shift+L | Organizes every graph in the Blueprint, plus its members. |
Chord changes take effect after restarting the editor.
Layout
| Setting | Default | Meaning |
|---|
| Horizontal Spacing | 80 | Minimum horizontal gap, in pixels, between adjacent layers of nodes. |
| Vertical Spacing | 40 | Minimum vertical gap, in pixels, between adjacent nodes in the same layer. |
| Insert Reroute Nodes | On | Adds a reroute node on any link that would otherwise cross through a node's body. |
| Straighten Links | On | Aligns pins where possible so links run as straight horizontal/vertical segments. |
| Setting | Default | Meaning |
|---|
| Create Comments | On | Wraps each logical section (an event and everything it reaches) in a titled comment box. |
| Cluster Comment Threshold | 8 nodes | Function-call clusters larger than this also get their own comment box. |
| Comment Padding | 30 | Padding, in pixels, between a comment box's border and the nodes inside it. |
| Palette — Events | (blue) | Comment color for event-rooted sections. |
| Palette — Input | (green) | Comment color for input-handling sections. |
| Palette — Timers | (orange) | Comment color for timer/delay-driven sections. |
| Palette — UI | (purple) | Comment color for UI/widget sections. |
| Palette — Network | (red) | Comment color for RPC/replication sections. |
| Palette — Default | (gray) | Comment color for sections that don't match any category above. |
Hygiene
| Setting | Default | Meaning |
|---|
| Remove Orphan Nodes | On | Deletes nodes with no path to or from an event. |
| Remove No-Op Reroutes | On | Deletes reroute nodes that only pass a single link straight through. |
| Merge Duplicate Casts | On | Collapses repeated casts of the same object to the same class within one exec chain into one. |
Members
| Setting | Default | Meaning |
|---|
| Sort Variables | On | Sorts variables by category, then by name. |
| Auto Categorize Variables | On | Assigns a category to uncategorized variables using the Category Rules below. |
| Category Rules | see below | Ordered list of {Pattern, Match, Category} rules used by Auto Categorize Variables. |
| Enforce Bool Prefix | On | Renames boolean variables to carry a b prefix; updates every reference. |
| Enforce PascalCase | On | Renames variables and functions to PascalCase; updates every reference. |
| Sort Functions | On | Sorts functions, macros and dispatchers alphabetically. |
Category Rules default entries:
| Pattern | Match | Category |
|---|
Is | Prefix | State |
b | Prefix | State |
Widget | Suffix | UI |
Health | Contains | Stats |
Add, remove or reorder rules freely; the first matching rule wins.
Report
| Setting | Default | Meaning |
|---|
| Show Report After Organize | On | Opens the Report tab automatically after every organize pass. |
| Long Chain Threshold | 15 | Exec chains with at least this many nodes are suggested as extract-function candidates. |
| Branch Depth Threshold | 3 | Branches nested at least this deep are flagged in suggestions. |