Skip to content

An expansion for Guavaman's Rewired Unity Asset that provides a simple to use API for showing input icons to the player at runtime based on their input method and bindings.

License

Notifications You must be signed in to change notification settings

Orange-Panda/Rewired-Glyphs

Repository files navigation

Rewired Input Glyphs

Rewired Input Glyphs Logo

An expansion for Guavaman's Rewired Unity Asset that provides a simple to use API for showing input icons to the player at runtime based on their input method and bindings.

Features

Features

  • Features numerous built in components to quickly show an icon for an action
  • Automatically changes sprites to show the user's most recently used device
  • Can show multiple sprites inline with text using TextMeshPro sprite sheets

Quick Start Guide

  1. Download and install the Rewired asset into your Unity project.
    1. See Rewired's Quick Start for more information on getting started with Rewired.
    2. Note: The Rewired asset will never be included in this package. Purchasing a license from the Unity Asset Store is required for this asset to function.
  2. Install the package via Git in the Package Manager
    1. Ensure you have Git installed and your Unity Version supports Git package manager imports (2019+)
    2. In Unity go to Window -> Package Manager
    3. Press the + icon at the top left of the Package Manager window
    4. Choose "Add package from Git URL"
    5. Enter the following into the field and press enter:
      1. Tip: You can append a version to the end of the Git URL to lock it to a specific version such as https://github.com/Orange-Panda/Rewired-Glyphs.git#v1.0.0
    https://github.com/Orange-Panda/Rewired-Glyphs.git
    
  3. Import the Kenney Default Glyphs sample from this package in the Package Manager.
    1. This will import CC0 licensed input sprites by Kenney alongside GlyphMap and GlyphCollection assets that associate inputs to glyphs.
    2. By default this should import to your project at Assets/Samples/Rewired Input Glyphs/{version}/Kenney Default Glyphs
    3. Feel free to move these files to any location you'd prefer
  4. Find the Rewired Input Manager prefab in your project and add the Rewired Glyph Manager component to it.
    1. This component and others in the package can be found in the Add Component menu under Rewired Glyphs
  5. Add the Glyph Collection imported from step 3 to the Rewired Glyph Manager
  6. Press the Generate TMP Sprite Sheet button on the Rewired Glyph Manager
    1. This generates TextMeshPro sprite sheets that allow for inline input glyph icons with your text.
  7. You are ready to go! Check out the usage section below to start displaying the icons in your project!

Usage

There are several ways to show input glyphs in your project such as:

  • Built-in components
  • Custom components
  • Polling the InputGlyphs API directly

Let's cover some of these methods and how to use them in your project.

Built-in Components

  • GlyphRichTextFormatter - Attach this component to a Game Object with a TMP_Text and it will format text such as <glyph "Jump"> into an inline sprite that represents that action.
    • <glyph "Jump"> will show the jump input sprite for player at index 0
    • <glyph "Move Horizontal" 1 Negative> will show the move left input sprite for player at index 1
    • <glyph 13 0> will show the action #13 input sprite for player at index 0
    • <glyph "Move Horizontal" Full> will show the move left or right input sprite for player at index 0
  • GlyphImageOutput - Show an input icon for an action, even if there is no sprite.
  • GlyphTextOutput - Show an input description for an action.
  • GlyphHybridOutput - Show an input icon for an action or fallback to text if there is no sprite available.
  • GlyphLabeledImageOutput - Show an input icon with an associated but independent TMP_Text and set their layout.

Custom Components

Custom components can be created by inheriting from GlyphDisplay. This class provides the void SetGlyph(Glyph glyph, AxisRange axisRange) method which is automatically invoked when a glyph may have changed such as a input device changes or preferences modifications.

Most of the built-in components inherit from GlyphDisplay so consider referencing them for examples.

Polling the InputGlyphs API

If you wanted tighter control over your implementation of presenting glyphs you can also use the InputGlyphs class to get glyph information yourself. Some important members to consider are the following:

  • event Action RebuildGlyphs - A static event which is invoked whenever the Glyph output of this class may have changed.
  • Glyph GetCurrentGlyph(int actionID, Pole pole, out AxisRange axisRange, int playerIndex = 0) - Get the Glyph for particular player's action.
  • void SetGlyphPreferences(HardwarePreference hardwarePreference, SymbolPreference symbolPreference) - Set the preferred symbols you want to present to the user.

Getting Help

Credits

This package is developed by Luke Mirman.

  • Joystick icon used in the logo is provided by Google Fonts under the Appache 2.0 license.
  • Lato font in the logo is provided by Google Fonts under the Open Font License.
  • Sample Input Icons included in package samples is attributed to Kenney assets under Creative Commons CC0 license.

About

An expansion for Guavaman's Rewired Unity Asset that provides a simple to use API for showing input icons to the player at runtime based on their input method and bindings.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Languages