enhanced-input

Create and configure Unreal Engine Enhanced Input actions, contexts, and bindings.

586|127|Updated Sep 12, 2025
One-click install
npx skills add https://github.com/kevinpbuckley/VibeUE --skill enhanced-input
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: enhanced-input
Source: https://github.com/kevinpbuckley/VibeUE/tree/main/Content/Skills/enhanced-input
Command: npx skills add https://github.com/kevinpbuckley/VibeUE --skill enhanced-input

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill simplifies the process of creating and wiring Unreal Engine Enhanced Input actions, mapping contexts, and bindings, reducing repetitive setup and prototyping time.

Core Features & Use Cases

  • Action creation: programmatically create input actions that define a semantic input concept (Jump, Fire, Dash) using the Unreal Python API.
  • Context binding: create and configure Mapping Contexts to group related actions for specific gameplay modes.
  • Bindings & modifiers: attach keys to actions, and apply triggers and modifiers to fine-tune behavior, all within the editor.
  • Use Case: A prototype character has no predefined inputs; quickly scaffold actions and mappings, then iterate in the Unreal Editor.

Quick Start

Use the Enhanced Input Skill to create an input action named "Jump" in the Default mapping context and bind it to the SpaceBar key, then save the asset.

Frequently Asked Questions about enhanced-input

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I programmatically create Enhanced Input actions in Unreal Engine?

You can programmatically create Enhanced Input actions in Unreal Engine by using the Unreal Python API to define semantic input concepts like Jump or Fire, then configuring triggers and saving the assets via EditorAssetLibrary methods.

Can I bind keys to Mapping Contexts in Unreal Engine using Python?

Yes, you can bind keys to Mapping Contexts in Unreal Engine using Python by creating and configuring contexts to group related actions for specific gameplay modes, then attaching keys and applying modifiers through editor automation scripts.

What is the best way to automate input setup for gameplay prototypes in Unreal Engine?

The best way to automate input setup for gameplay prototypes in Unreal Engine is using Python scripts to scaffold Enhanced Input actions and mapping contexts, reducing repetitive manual configuration and accelerating iteration directly within the editor.

Do I need EditorAssetLibrary to configure Enhanced Input bindings via Python?

Yes, you need EditorAssetLibrary to configure Enhanced Input bindings via Python because it handles asset persistence, allowing you to create actions, associate keys with triggers and modifiers, and save the configured input assets within the Unreal Editor.

Can I use Python to group gameplay actions into Mapping Contexts for different modes?

Yes, you can use Python to group gameplay actions into Mapping Contexts for different modes by programmatically creating contexts and associating specific input actions, keys, and triggers tailored to each gameplay state.

Does automating Enhanced Input configuration with Python work for mod development?

Yes, automating Enhanced Input configuration with Python works for mod development because it supports project-wide input setup tasks, enabling rapid creation of actions, context management, and key binding adjustments without manual editor interaction.