docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Input Action Assets

    • Creating Input Action Assets
    • Editing Input Action Assets
    • Using Input Action Assets
    • Type-safe C# API Generation

    An Input Action Asset is an Asset which contains a set of Input Actions definitions and their associated Bindings and Control Schemes. These Assets have the .inputactions file extension and are stored in a plain JSON format.

    The input system creates an Action Asset when you set up the default project-wide actions, but you can also create new Action Assets directly in the Project window.

    For most common scenarios, you do not need to use more than one Input Action Asset. It is usually simpler to configure your project-wide action definition in the Project Settings window.

    Creating Input Action Assets

    To create an Asset that contains Input Actions in Unity, right-click in the Project window or go to Assets > Create > Input Actions from Unity's main menu.

    Editing Input Action Assets

    To bring up the Action editor, double-click an .inputactions Asset in the Project Browser, or select the Edit Asset button in the Inspector for that Asset. You can have more than one editor window open at the same time, but not for the same Asset.

    The Actions Editor which opens is identical to the Actions Editor in the Project Settings window.

    Using Input Action Assets

    Type-safe C# API Generation

    Input Action Assets allow you to generate a C# class from your action definitions, which allow you to refer to your actions in a type-safe manner from code. This means you can avoid looking up your actions by string.

    Auto-generating script code for Actions

    One of the most convenient ways to work with .inputactions Assets in scripts is to automatically generate a C# wrapper class for them. This removes the need to manually look up Actions and Action Maps using their names, and also provides an easier way to set up callbacks.

    To enable this option, tick the Generate C# Class checkbox in the importer properties in the Inspector of the .inputactions Asset, then select Apply.

    MyPlayerControls Importer Settings

    You can optionally choose a path name, class name, and namespace for the generated script, or keep the default values.

    This generates a C# script that simplifies working with the Asset.

    using UnityEngine;
    using UnityEngine.InputSystem;
    
    // IGameplayActions is an interface generated from the "gameplay" action map
    // we added (note that if you called the action map differently, the name of
    // the interface will be different). This was triggered by the "Generate Interfaces"
    // checkbox.
    public class MyPlayerScript : MonoBehaviour, IGameplayActions
    {
        // MyPlayerControls is the C# class that Unity generated.
        // It encapsulates the data from the .inputactions asset we created
        // and automatically looks up all the maps and actions for us.
        MyPlayerControls controls;
    
        public void OnEnable()
        {
            if (controls == null)
            {
                controls = new MyPlayerControls();
                // Tell the "gameplay" action map that we want to get told about
                // when actions get triggered.
                controls.gameplay.SetCallbacks(this);
            }
            controls.gameplay.Enable();
        }
    
        public void OnDisable()
        {
            controls.gameplay.Disable();
        }
    
        public void OnUse(InputAction.CallbackContext context)
        {
            // 'Use' code here.
        }
    
        public void OnMove(InputAction.CallbackContext context)
        {
            // 'Move' code here.
        }
    
    }
    

    Note: To regenerate the .cs file, right-click the .inputactions asset in the Project Browser and choose "Reimport".

    Using Action Assets with PlayerInput

    The Player Input component provides a convenient way to handle input for one or multiple players. You can assign your Action Asset to the Player Input component so that it can then automatically handle activating Action Maps and selecting Control Schemes for you.

    PlayerInput

    Modifying Input Action Assets at runtime

    There are several ways to modify an Input Action Asset at runtime. Any modifications that you make during Play mode to an Input Action Asset do not persist in the Input Action Asset after you exit Play mode. This means you can test your application in a realistic manner in the Editor without having to worry about inadvertently modifying the asset. For examples on how to modify an Input Action Asset, see the documentation on Creating Actions in code and Changing Bindings.

    The Default Actions Asset

    An asset called DefaultInputActions.inputactions containing a default setup of Actions comes with the Input System Package. You can reference this asset directly in your projects like any other Unity asset. However, the asset is also available in code form through the DefaultInputActions class.

    void Start()
    {
        // Create an instance of the default actions.
        var actions = new DefaultInputActions();
        actions.Player.Look.performed += OnLook;
        actions.Player.Move.performed += OnMove;
        actions.Enable();
    }
    

    Note: This default actions asset is older than, and entirely separate from the default project-wide actions. It is a legacy asset that remains included in the package for backward compatibility.

    In This Article
    • Creating Input Action Assets
    • Editing Input Action Assets
    • Using Input Action Assets
    • Type-safe C# API Generation
      • Auto-generating script code for Actions
      • Using Action Assets with PlayerInput
      • Modifying Input Action Assets at runtime
      • The Default Actions Asset
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)