Home

Awesome

<a href="./README.md">Static Badge</a> <a href="./README.ru.md">Static Badge</a>

<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="Media/logo-umi-dark.png"> <source media="(prefers-color-scheme: light)" srcset="Media/logo-umi.png"> <img alt="UMI (UnityMobileInput)" height="192" width="512" src="Media/logo-umi.png"> </picture> </p> <h3 align="center">UMI</h3> <h4 align="center">Unity plugin for Android and iOS, allows to use features of mobile native input fields</h4> <p align="center"> <a href="#quick-start">Quick start</a> ยท <a href="/Documentation~/index.md">Documentation</a> ยท <a href="https://github.com/mopsicus/umi/issues">Report Bug</a> </p>

๐Ÿ’ฌ Overview

This package allows you to use native input fields on Android and iOS. It works with TMP InputField component and uses some of its options.

Problem

The current implementation of Unity's input field doesn't allow you to use selection, copy/paste, emoji, and other built-in features on mobile. And no one knows when that will happen or if it will happen at all.

Solution

This plugin creates native input fields above the canvas UI with all platform features. Since this is a hack and the input fields are placed above the UI, you will have to control their visibility and position yourself. The plugin provides some useful options to make this more convenient.

โœจ Features

๐Ÿš€ Usage

Installation

Get it from releases page or add the line to Packages/manifest.json and module will be installed directly from Git url:

"com.mopsicus.umi": "https://github.com/mopsicus/umi.git",

Quick start

See the samples section to get a demo app. This demo will show you how to initiate and use UMI in your app, how to create a chat-like app, and how to use a custom font.

Tested in Unity 2020.3.x, Android (API >= 24) and iOS.

Initialization

Before creating the first input field, UMI must be initiated. It should create a special game object on the scene with a controller that will interact with native plugins.

To do this, add UMI to the uses section and call the init method, for example, in the Awake method in your app's entry point.

using UnityEngine;
using UMI;

public class Bootstrap : MonoBehaviour {

    void Awake() {
        MobileInput.Init();
    }
    
}

[!NOTE] Make sure you do this before creating all input fields, otherwise UMI will raise an exception.

[!IMPORTANT] UMI will not work with the Render Over Native UI option enabled.

Setup

To begin using UMI in your project, add MobileInputField script to game object with TMP Input field.

In the inspector, you can edit several options that will be applied to the native input field:

From UMI, you can edit these additional options:

Keyboard and orientation callbacks

If you need to detect the appearance or hiding of the keyboard, you must subscribe to events and add a handler to your code.

using UnityEngine;
using UMI;

public class Bootstrap : MonoBehaviour {

    void Awake() {
        MobileInput.Init();
        MobileInput.OnKeyboardAction += OnKeyboardAction;
        MobileInput.OnOrientationChange += OnOrientationChange;
    }

    void OnOrientationChange(HardwareOrientation orientation) {
        // raise when the screen orientation is changed
    }

    void OnKeyboardAction(bool isShow, int height) {
        // raise when the keyboard is displayed or hidden, and when the keyboard height is changed
    }
    
}

With OnKeyboardAction you can control UI elements, such as moving the input field as in chat apps. See the demo app.

Runtime methods

How to use custom fonts

  1. Copy TTF fonts to StreamingAssets folder
  2. Input font name in property instead default
  3. Profit

When you first initialize, UMI will copy the fonts to a special app folder for your use. If you change the font(s) on the next update, you'll have to call MobileInput.UpdateFonts() to update the app folder with the fonts.

iOS

The iOS plugin is simple, with only 3 files. If you want to know how it works under the hood - look for the MobileInput.mm file in the Plugins folder of the package and read the docs.

Android

Android plugin is a compiled AAR library. All sources are available in Android~ folder. You can edit the android part and recompile the library to suit your needs.

Make sure your AndroidManifest.xml has the following setting:

<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:windowSoftInputMode="adjustNothing">
    ...
    <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
    ...
</activity>

The adjustNothing option has been added to prevent the screen from shifting up when the keyboard is displayed.

Unity

The Unity part contains a wrapper to call the native methods of the input field and an editor script to customize the parameters in inspector.

At initialization, the plugin creates a non-destructible game object for sending and receiving commands from the native part. When the MobileInputField script is used, the plugin registers it and creates a native field.

Data passed between the Unity app and native plugins is in JSON format. UMI uses NiceJson library for this purpose with some modifications.

๐Ÿ—๏ธ Contributing

We invite you to contribute and help improve UMI. Please see contributing document. ๐Ÿค—

You also can contribute to the UMI project by:

Environment setup

For a better experience, you can set up an environment for local development. Since UMI is developed with VS Code, all settings are provided for it.

  1. Use Monokai Pro or eppz! theme
  2. Use FiraCode font
  3. Install extensions:
    • C#
    • C# Dev Kit
    • Unity
  4. Enable Inlay Hints in C# extension
  5. Install Visual Studio Editor package in Unity
  6. Put .editorconfig in root project directory
  7. Be cool

๐Ÿค Support

You can support the project by using any of the ways below:

โœ‰๏ธ Contact

Before you ask a question, it is best to search for existing issues that might help you. Anyway, you can ask any questions and send suggestions by email or Telegram.

๐Ÿ”‘ License

UMI is licensed under the MIT License. Use it for free and be happy. ๐ŸŽ‰