Socket
Socket
Sign inDemoInstall

phaser-input

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    phaser-input

Adds input boxes to Phaser like CanvasInput, but also works for WebGL and Mobile, made for Phaser only.


Version published
Weekly downloads
14
decreased by-36.36%
Maintainers
1
Install size
80.6 kB
Created
Weekly downloads
 

Readme

Source

Phaser Input

Some description here about how awesome this Phaser Input library is, because it works on Canvas AND WebGL. Oh did I mention mobile to? no? Well it supports mobile..

Key features:

  • Works on mobile and Desktop
  • Included TypeScript support
  • Also runs under WebGL renderer
  • Pure Phaser implementation
  • Easy configurable
  • Production hardened

Getting Started

First you want to get a fresh copy of the plugin. You can get it from this repo or from npm, ain't that handy.

npm install phaser-input --save-dev

Next up you'd want to add it to your list of js sources you load into your game

<script src="node_modules/phaser-input/build/phaser-input.js"></script>

After adding the script to the page you can activate it by enabling the plugin:

game.add.plugin(Fabrique.Plugins.InputField);

Usage

Adding a InputField

The simplest way of adding a input field is:

var input = game.add.inputField(10, 90);

Ofcourse there are options available that can be used to style the input. They can be passes as an object as the third parameter.

var password = game.add.inputField(10, 90, {
    font: '18px Arial',
    fill: '#212121',
    fontWeight: 'bold',
    width: 150,
    padding: 8,
    borderWidth: 1,
    borderColor: '#000',
    borderRadius: 6,
    placeHolder: 'Password',
    type: Fabrique.InputType.password
});

Using zoom

Zooming is easy to enable on an input field, it can be passed to the InputField as a setting. But there are some caveats:

First of all, it's only meant for mobile. Second; it modifies the scale and pivot of the world, and that might interfere with your resize.

Also, when the keyboard is shown, sometimes a resize event will be triggered.

Ideally you use a custom resize event, check for the static property Fabrique.Plugins.InputField.KeyboardOpen and don't resize when it's set to true.

Using keyboard open/close signals

Current version includes two event dispatchers that notify when a device keyboard is opened or closed.

You can add listeners which trigger events based on this feedback.

Fabrique.Plugins.InputField.onKeyboardClose.addOnce(function() {
                    this.resizeBackgroundImage();
                });

Capture input events

By default, input event will not bubble up to other elements This is controlled by an InputField property called blockInput. When set to false, the input event will trigger on the input element and move up to other elements listening for the event.

e.g. An in-game sprite might be listening for keyboard events (W, A, S, D). If set to false, typing in input field will not trigger keyboard events for the sprite. So the sprite will not move when typing into input field.

Toggle Enter key

InputField has a property (focusOutOnEnter) that controls whether the input field will lose focus on pressing Enter. If set to true, pressing enter will end focus on the field (default is true).

Current Limitations

  • Updates are slow when typing fast (type slower you!!)
  • Zoom modifies the pivot and scale of the world, so it might interfere with some stuff

Properties

  • x: number (0 by default) The X-coordinate in the game
  • y: number (0 by default) The Y-coordinate in the game
  • fill: string (#fff by default) The color of the inputted text
  • fillAlpha: number (1 by default) Alpha of the textbox, 0 will hide the textbox and only show the text/placeholder/cursor
  • width: number (150 by default) The width of the text box (just like in the DOM, padding, borders add onto this width)
  • height: number (14 by default) The height of the text box (just like in the DOM, padding, borders add onto this height)
  • padding: number (0 by default) The padding in pixels around all 4 sides of the text input area.
  • borderWidth: number (1 by default) Size of the border
  • borderColor: string (#000 by default) Color of the border
  • borderRadius: number (0 by default) Create rounded corners by setting a border radius
  • placeHolder: string ('' by default) Text that will be shown before the user input's anything
  • placeHolderColor: string (#bfbebd by default) The color of the placeholder text
  • type: InputType (text by default) Either text, password or numeric
  • backgroundColor: string (#fff by default) The background color of the input box
  • cursorColor: string (#000 by default) The color of the blinking cursor
  • font: string (14px Arial by default) The font that is used for the input box, covers the input text, placeholder and cursor
  • min: string (none by default) The minimum number for the input field, only for number input fields
  • max: string (none by default) The maximum number for the number input field, or the maxLength for other input fields
  • selectionColor: string (rgba(179, 212, 253, 0.8) by default) The default color for the text selection highlight.
  • zoom: boolean (false by default) if we need to zoom onto the input field (mobile only).

Browser Support

Tested on:

  • Desktop
  • Chrome 48+
  • FireFox 44+
  • Safari 9+
  • Mobile
  • Chrome 48+
  • iOS 9+

FAQ

I Don't see the cursor blinking!

This is most likely due to you adding the input field to a custom Phaser object. According to the Phaser docs the update function needs to be called manually in these cases.

So add the following to your object and the cursor should work :)

update: function () {
    this._inputField.update();
},

Credits

phaser-input is inspired by CanvasInput

Disclaimer

We at OrangeGames just love playing and creating awesome games. We aren't affiliated with Phaser.io. We just needed some awesome input boxes in our awesome HTML5 games. Feel free to use it for enhancing your own awesome games!

Phaser Input is distributed under the MIT license. All 3rd party libraries and components are distributed under their respective license terms.

FAQs

Last updated on 14 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc