Proposed Plugins
Not everything useful belongs in the engine repository. A plugin bundled with Vite increases the size of every clone, the length of every build and the surface area of every integration. This page tracks what has been proposed and which tier it belongs in.

Plugins already integrated live in Engine\Plugins\Runtime\VitePlugins.
Tiers
- Engine repository
Core functionality and native runtime. Small, fast to compile, useful to nearly everyone. These get bundled — see Bundled Plugins.
- Staples
Relevant to general game production, frequently used in AAA, representing major functionality. Worth bundling if licensing and size allow; otherwise documented so teams can add them.
- Common use
Non-essential or high-level tooling, typically Blueprint extensions. Projects add these themselves.
Staple plugins
PhysX Instanced Subsystem — integrated, free
A world subsystem plus instanced actor workflow for managing large numbers of PhysX-backed instanced bodies. Instead of spawning thousands of separate AActor/UPrimitiveComponent objects, you keep one or a few instanced mesh actors for rendering while the subsystem creates and updates per-instance PhysX rigid bodies, writing their poses back into ISM/HISM instance transforms.
Integrated at version 1.11. See Instanced Physics.
Houdini Engine — integrated, commercial/free use
Procedural workflow through Houdini Digital Assets. Artists adjust asset parameters interactively in the editor and use Unreal assets as inputs; Houdini's procedural engine cooks the asset and the result appears in the editor without baking.
Motion Symphony — integrated
Ubisoft-style motion matching and pose matching. Bundled at 1.09; see Bundled Plugins.
PopcornFX — commercial/free use
Proprietary particle system used in several AAA titles including Blizzard games and racing titles. Version 2.18.6 is the latest fully 4.27-compatible release. Better GPU performance than Niagara.
A patched build by bunnyofficial fixes a compile error: patched version.
Azure PlayFab — commercial/free use
Backend platform for live games: player authentication, data storage, matchmaking, multiplayer networking, analytics and LiveOps such as events and A/B testing, on Azure infrastructure.

Wwise — commercial/free use
The de facto standard audio middleware for games, with hundreds of shipped titles.
Asset Downgrader — paid
Downgrades assets to 5.6.1, 5.5.4, 5.4.4, 5.3.2, 5.2.1, 5.1.1, 5.0.3, 4.27 and 4.26. It first upgrades assets to the source version (5.6), then applies patches to the .uasset files to make them compatible with the target version, minus the newer data — Nanite data is stripped for a 4.27 downgrade, for example.

Target versions the downgrader supports, from 5.6.1 down to 4.26.
This is the practical route for using UE5 marketplace content in Vite. See Migrating from UE5. The author, Ciprian Stanciu, is active on the Vite Discord and has provided direct help on several Vite projects.

HTN Planner — FAB / paid
Hierarchical Task Network AI framework for Unreal. Goal-driven strategy built by separating what to do from how to do it. Version 1.18.3 was recently backported to 4.27.

A hierarchical task network separates the goal from the method used to reach it, which is what makes plans composable across agents.
Common use plugins
These are recommended but not bundled. Add them per project.
FFMPEG Media Player
Support for more video formats and alpha videos than the stock media framework.
UI Navigation
Blueprint-driven UI navigation for gamepad and keyboard menu traversal.
Multiplayer Movement (SMN2)
Blueprint multiplayer movement. Officially supported to 4.26 but compiles and works on 4.27, and can be extended further. Deprecated upstream.
Root Motion Source
Fully functional on 4.26 and 4.27, and effectively the 4.x equivalent of UE5's Motion Warping. In stock UE4, root motion source is only correctly networked through GAS; this plugin overrides that and exposes full root motion source functionality directly in Blueprints.
Field testing on a laggy network reports that following normal CMC logic gives clean results without jitter or server-side corrections during root motion animations.

Proposing a plugin
Before proposing, check:
Criterion | Requirement |
|---|---|
Engine version | Compatible with 4.21–4.27. UE5-only is out of scope. |
Licensing | Redistributable, or clearly documented as something users obtain themselves |
Size | Bundled plugins are cloned by everyone. Large binary dependencies need justification. |
Compile cost | Adds to every engine build. See Shader Compilation and PSO. |
Overlap | Does it duplicate something already bundled or stock? |
Then say which tier you think it belongs in and why.