InputStateManager 1.2.1.4

dotnet add package InputStateManager --version 1.2.1.4
                    
NuGet\Install-Package InputStateManager -Version 1.2.1.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="InputStateManager" Version="1.2.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="InputStateManager" Version="1.2.1.4" />
                    
Directory.Packages.props
<PackageReference Include="InputStateManager" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add InputStateManager --version 1.2.1.4
                    
#r "nuget: InputStateManager, 1.2.1.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=InputStateManager&version=1.2.1.4
                    
Install InputStateManager as a Cake Addin
#tool nuget:?package=InputStateManager&version=1.2.1.4
                    
Install InputStateManager as a Cake Tool

A helper PCL (InputStateManager) for MonoGame useful for querying keyboard, mouse, touch and gamepad inputs.
Currently it provides convenience-methods in a fluent manner for:
- Keyboard (Key) Sub-context for 'Is' and 'Was', helper functions for 'Any-ALT (...SHIFT, CTRL)' and NumLock and CapsLock.
- Mouse (Mouse) Sub-context for 'Is' and 'Was' and delta-functions for mouse-wheel, position, etc...
- GamePad (Pad) Sub-context for 'Is' and 'Was' and for 'DPad', 'Triggers' and 'ThumbSticks'.
- TouchPanel (Touch) Sub-context for 'Is' and 'Was'. Currently only exposes TouchCollections.
It is a PCL so you should be able to use it in any MG project.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on InputStateManager:

Package Downloads
MonoGameDemoTools

This is a PCL library that contains helper classes that should make writing demos with and for MonoGame more comfortable. In general it contains tools that are boilerplate code and would rather distract the user from the demo.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1.4 1,896 1/27/2018
1.2.1.3 1,097 1/26/2018
1.1.1.1 1,137 1/22/2018
1.1.1 1,092 1/19/2018
1.1.0.2 2,776 11/4/2017
1.1.0.1 923 11/3/2017

Changes API slightly because it feels more natural and you may pass several buttons/buttonstates/etc at once (AND). Also adds OneXXX methods (OR).