npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dev.bxbstudio.inputs-manager

v1.1.13

Published

A simple and customization input alternative for Unity based on the New Input System.

Readme

Inputs-Manager

A new customizable and dynamic Input alternative for Unity based on the New Input System.

Version: 1.1.13

Features

  • High-performant code (Using C# Jobs System & Burst)
  • Joysticks/Gamepad compatibility
  • Runtime double press and hold binding
  • Bind keys within the Unity Editor
  • Edit inputs at runtime
  • Easy input setup
  • Save and import presets
  • Editor-ready JSON presets
  • Fully customizable API
  • Dynamic editor window
  • Secured data saving
  • Wide range of settings

Documentation

Will be available soon... You can use this temporary tutorial to help you. You can also use the editor tooltips whenever you need something to be explained.

Important Notes!

Importing the Inputs Manager manually to your Unity project requires the Unity CSharp Utilities library to be added to your project for it to work without any MissingReferenceException**.

  • Use the Automatic install method to avoid importing errors.
  • This package requires a few packages to be installed from the Package Manager. Check the Dependencies section below for more information
  • Please do not change the destination of the existing files under the** Resources directory. Doing so may cause some internal errors!

How to Install

There are multiple methods to install the Inputs Manager in your Unity project.

  1. Automatically: Requires Git to be installed on your machine (Learn more):

    • Open Unity's Package Manager by going to Window > Package Manager.
    • Click on the + button on the top left of the Package Manager window.
    • Click on Add package from git URL.
    • Enter the following Git URL: https://github.com/BxB-Studio/Unity-CSharp-Utilities.git to add the Unity CSharp Utilities library.
    • Click the Add button.
    • Repeat the same steps to add the Inputs Manager.
    • Click on the + button on the top left of the Package Manager window.
    • Click on Add package from git URL.
    • Enter the following Git URL: https://github.com/BxB-Studio/Inputs-Manager.git.
    • Click the Add button.
  2. Manually:

    • Clone the GitHub repository of the Unity CSharp Utilities library.
    • Extract the ZIP archive to a folder.
    • Move the extracted folder to your project's Assets folder.
    • Clone the GitHub repository of the Inputs Manager repository.
    • Extract the ZIP archive to a folder.
    • Move the extracted folder to your project's Assets folder.

Start-up Tutorial

The Inputs Manager is available under the Tools > Utilities > Inputs Manager menu. You can access the Inputs Manager API from the Utilities.Inputs namespace.

Compatibility

  • Unity 2020.3.17f1 or newer

Dependencies

  • Utilities: 1.1.8 or newer
  • Collections: 1.2.4 or newer
  • Input System: 1.7.0 or newer

Release Notes

  • 1.1.13
    • Fixed IndexOutOfRangeException for DefaultGamepadIndexFallback
  • 1.1.12
    • Upgraded Utilities package to 1.1.8
  • 1.1.11
    • Fixed IndexOutOfRangeException when getting values from an invalid gamepad index
  • 1.1.10
    • Upgraded Utilities package to 1.1.7
  • 1.1.9
    • Fixed data save bug
    • Optimized data load
    • Changed gamepad index type from byte to sbyte
  • 1.1.8
    • Added CloseWindow method
    • Replaced OpenInputsManager with OpenWindow
  • 1.1.7
    • Changed data asset path
    • Replaced DataAssetFullPath with EditorDataAssetFullPath
    • Replaced SaveData with EditorSaveData
  • 1.1.6
    • Upgraded to Utilities 1.1.6
    • Fixed un-disposed inputsGamepadAccess array
  • 1.1.5
    • Fixed gamepads detection
  • 1.1.4
    • Updated obsolete code
  • 1.1.3
    • Improved exceptions handling
    • Updated Readme.md
  • 1.1.2
    • Fixed backward compatibility for Unity 2020.3
  • 1.1.1
    • Added default gamepad override
    • Optimized input calculation
    • Fixed input constructor
  • 1.1.0
    • Added C# Jobs System integration
    • Updated Utilities library
  • 1.0.3
    • Added a default Inputs Manager data asset file
    • Some minor API syntax improvements
    • A small code Refresh
  • 1.0.2
    • Easier input edit through scripting
    • Added scripting custom data loading
    • Edit settings in Play Mode in Editor & through scripting
  • 1.0.1
    • New updated Utilities library
    • Fixed Gamepad/Joystick detection at runtime
  • 1.0.0
    • First production release
    • Added joystick/gamepad support
    • Optimized code
    • Optimized performance
    • Fixed a bunch of bugs
    • Ability to bind joystick/gamepad inputs
  • 0.4-beta
    • Fixed some performance issues
    • Fixed some bugs
  • 0.3-beta
    • Verified the Inputs Manager code
    • Added the ability to check for inputs double press
    • Optimized the code by adding some updating improvements and removing some unnecessary lines
    • Updated the Utilities library
    • Fixed some major bugs
  • 0.2-beta
    • Added individual Keys binding methods (InputKey, InputKeyDown, InputKeyUp)
    • Fixed some bugs
  • 0.1-beta.6
    • First official beta release
    • Fixed some bugs
  • 0.1-beta.5
    • Fixed some bugs
  • 0.1-beta.4
    • First Pre-Release
  • 0.1-preview.3
    • Fixed the Editor compatibility for Unity 2019.3
  • 0.1-preview.2
    • Added some meta files for the Editor icons
  • 0.1-preview.1
    • Fixed some compatibility issues
  • 0.1-preview (First Commit)
    • Add, remove, duplicate inputs
    • Bind keys in the editor
    • JSON preset importer

Contributing

Please read the contributing guidelines for this repository.

License

This project is under the MIT license. Read more about it.