Skip to main content

Settings

All settings live under Editor Preferences > Plugins > Unreal Engine Absolute Blueprint Organizer.

Shortcuts​

SettingDefaultMeaning
Organize Graph ChordCtrl+Alt+LOrganizes the graph currently in focus.
Organize Blueprint ChordCtrl+Alt+Shift+LOrganizes every graph in the Blueprint, plus its members.

Chord changes take effect after restarting the editor.

Layout​

SettingDefaultMeaning
Horizontal Spacing80Minimum horizontal gap, in pixels, between adjacent layers of nodes.
Vertical Spacing40Minimum vertical gap, in pixels, between adjacent nodes in the same layer.
Insert Reroute NodesOnAdds a reroute node on any link that would otherwise cross through a node's body.
Straighten LinksOnAligns pins where possible so links run as straight horizontal/vertical segments.

Comments​

SettingDefaultMeaning
Create CommentsOnWraps each logical section (an event and everything it reaches) in a titled comment box.
Cluster Comment Threshold8 nodesFunction-call clusters larger than this also get their own comment box.
Comment Padding30Padding, 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​

SettingDefaultMeaning
Remove Orphan NodesOnDeletes nodes with no path to or from an event.
Remove No-Op ReroutesOnDeletes reroute nodes that only pass a single link straight through.
Merge Duplicate CastsOnCollapses repeated casts of the same object to the same class within one exec chain into one.

Members​

SettingDefaultMeaning
Sort VariablesOnSorts variables by category, then by name.
Auto Categorize VariablesOnAssigns a category to uncategorized variables using the Category Rules below.
Category Rulessee belowOrdered list of {Pattern, Match, Category} rules used by Auto Categorize Variables.
Enforce Bool PrefixOnRenames boolean variables to carry a b prefix; updates every reference.
Enforce PascalCaseOnRenames variables and functions to PascalCase; updates every reference.
Sort FunctionsOnSorts functions, macros and dispatchers alphabetically.

Category Rules default entries:

PatternMatchCategory
IsPrefixState
bPrefixState
WidgetSuffixUI
HealthContainsStats

Add, remove or reorder rules freely; the first matching rule wins.

Report​

SettingDefaultMeaning
Show Report After OrganizeOnOpens the Report tab automatically after every organize pass.
Long Chain Threshold15Exec chains with at least this many nodes are suggested as extract-function candidates.
Branch Depth Threshold3Branches nested at least this deep are flagged in suggestions.