-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added SimpleInput.TrackUnityInput (see README)
- Got rid of CS0649 warnings in the console - Bugfix for an exception that might occur when scene changes - Packed unused sprites into ExtraResources.unitypackage
- Loading branch information
Showing
446 changed files
with
330 additions
and
18,296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
5 changes: 2 additions & 3 deletions
5
.../SimpleInput/Sprites/FlatDark/Arrows.meta → ...pleInput/ExtraResources.unitypackage.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
= Simple Input = | ||
|
||
Online documentation available at: https://github.com/yasirkula/UnitySimpleInput | ||
E-mail: [email protected] | ||
|
||
1. ABOUT | ||
This tool is an improvement over Unity's standard Input system that allows you to use custom input providers like on-screen joysticks, UI buttons and d-pads. In other words, it lets you simulate e.g. Input.GetAxis when a button is pressed or a virtual joystick is dragged. It also supports using custom axes and buttons that don't necessarily exist in Edit-Project Settings-Input. | ||
|
||
2. HOW TO | ||
To use the SimpleInput system, simply replace Input with SimpleInput in your scripts. Note that there is no replacement for Input.GetKey(string) function. You have to convert the string to the corresponding KeyCode to benefit from SimpleInput.GetKey(KeyCode) function. | ||
|
||
Prefabs folder contains some plug 'n' play prefabs. Drag & drop them to your canvas and you are good to go! You can also customize them using the sprites provided in the Sprites folder (or using your own sprites, obviously). For more resources, open ExtraResources.unitypackage. | ||
|
||
By default, SimpleInput receives input from Unity's Input system, as well. That's why your code keeps working as is after changing Input to SimpleInput. If you want, you can disable this behaviour so that SimpleInput receives input from custom input providers only. Simply calling "SimpleInput.TrackUnityInput = false;" will do the trick. It is possible to let a subset of the standard Unity inputs continue providing input to SimpleInput via the UnityInputProvider component. | ||
|
||
SimpleInput works almost identically to standard Input system; only the lerping of Input.GetAxis might differ slightly. Lerp modifier can be configured via SimpleInput.AxisLerpModifier. | ||
|
||
2.1. SimpleInput.GetAxis Inputs | ||
- AxisInputKeyboard: provides axis input while specified key is held down | ||
- AxisInputMouse: redirects "Mouse X" and "Mouse Y" inputs to two other axes on standalone platforms. Normally, on mobile platforms, dragging your finger on touchscreen provides "Mouse X" and "Mouse Y" inputs. However, you may want to simulate these two axes only with certain input method(s) on mobile platforms, e.g. a joystick. In this case, use this component to redirect mouse input to some other custom axes (like "MouseNew X", "MouseNew Y") and use these axes with SimpleInput in your scripts. Other input method(s) e.g. joystick should also use these axes instead of "Mouse X" and "Mouse Y" | ||
- AxisInputUI: provides axis input while attached UI Element (anything that extends UnityEngine.UI.Graphic) is held down | ||
- AxisInputPinchGesture: provides axis input while pinch gesture is performed with two pointers on a RectTransform | ||
- AxisInputRotateGesture: provides axis input while rotate gesture is performed with two pointers on a RectTransform | ||
- AxisInputSwipeGesture: provides axis input while a pointer is swiped by a specified amount on a RectTransform | ||
- Dpad: provides -1, 0 or 1 as axis input for x and y axes while the Dpad is held down; works similar to joystick Dpads | ||
- Joystick: a standard on-screen joystick input. If Is Dynamic Joystick is selected, joystick only appears while a pointer touches the screen. Dynamic Joystick Movement Area specifies the zone that the dynamic joystick can appear in (leave blank to use the whole canvas) | ||
- SteeringWheel: provides axis input while the wheel is rotated (by far, the most fun input method to play with =') ) | ||
- Touchpad: provides axis input while a pointer is dragged on a RectTransform | ||
|
||
2.2. SimpleInput.GetButton Inputs | ||
- ButtonInputKeyboard: provides button input while specified key is held down | ||
- ButtonInputUI: provides button input while attached UI Element is held down | ||
- ButtonInputSwipeGesture: provides button input while a pointer is swiped by a specified amount on a RectTransform | ||
|
||
2.3. SimpleInput.GetMouseButton Inputs | ||
- MouseButtonInputKeyboard: provides mouse button input while specified key is held down | ||
- MouseButtonInputUI: provides mouse button input while attached UI Element is held down | ||
- MouseButtonInputSwipeGesture: provides mouse button input while a pointer is swiped by a specified amount on a RectTransform | ||
|
||
2.4. SimpleInput.GetKey Inputs | ||
- KeyInputKeyboard: provides key input while specified real key is held down | ||
- KeyInputUI: provides key input while attached UI Element is held down | ||
- KeyInputSwipeGesture: provides key input while a pointer is swiped by a specified amount on a RectTransform | ||
|
||
To send an input while a mouse button is held down, you can use the XInputKeyboard component and set the key to the desired mouse button: KeyCode.Mouse0, KeyCode.Mouse1, etc. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.