FOLEY EDITOR TOOL

Unreal Engine 5

A standalone Unreal Engine editor plugin that turns footstep events from a manual, per-animation chore into a batch operation. Built as an extension of Epic's FootstepAnimEventsModifier, it detects foot strikes, generates sync markers and notifies, swaps existing notifies, and cleans up legacy data across one animation or hundreds at once.

Standalone UE 5.7+ editor plugin · C++

Docked Editor & Batch Processing

The tool runs as a docked Foley Editor window right next to the Details panel inside any animation sequence. This means no separate windows and no context switching. Just tune the detection settings, run it, and the notifies land on the timeline.

The same workflow scales: select any number of animations in the Content Browser and launch the batch edit window to process the whole set in one pass. This was built to handle large animation batches, not just one-off sequences.

Selecting multiple animations in the Content Browser Batch edit tool window

Config-Backed Preset System

A Developer Settings configured set of presets stores and loads complete tool setups, speeding up the process by pre-filling repeated steps. The plugin ships with curated presets that generally work for most bi-pedal skeletons however, custom presets can be added easily per project from this config or directly from the main editor window.

Foley Editor Config developer settings with saved presets

Per-Foot Detection Settings

Detection is driven by SampleRate, GroundThreshold, and SpeedThreshold, with optional removal of pre-existing notifies or sync markers. Each FootDefinition pairs a foot bone with a reference bone and independently controls what gets generated per foot.

Foley Editor Tool detection settings

Migrating Existing Animation Data

Real projects rarely start clean, so the tool migrates what's already there. GenerateNotifiesFromSyncMarkers scans selected animations for existing sync markers, auto-populates the lane mappings, and generates notify tracks with the chosen notify class placed at every marker.

ReplaceExistingNotifies swaps notify classes across a whole selection. The Match button scans for existing classes and auto-suggests replacement pairs, picking the best match for left or right based on old-class and new-class pickers. There is also optional property copying from the originals. OrphanedNotifies scans for notifies whose classes no longer resolve, match them by name pattern, and re-point them at a valid class.

Execution Log with Undo / Redo

Every run leaves a visible Snapshot trail in an execution log inside the window, with undo and redo actions per entry. While the window is in focus, batch operations across hundreds of animations stay reversible, which is what makes the batch workflow safe to use.

The runtime side of this workflow is covered in the Footstep System breakdown.