-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
Description
Hello,
I am using this phaser input plugin in my game, but it is not working on mobile devices/tablets? What could be be the problem?
https://github.com/orange-games/phaser-input
It is working fine on desktop, but when i tried on ipad and even on android mobile typing text is not happening.
This is the code-
//enable plugin for text input
game.add.plugin(PhaserInput.Plugin);
//textfield
var name=game.add.inputField(200, 230, {
font: '29px casual',
fill: '#000',
width: 380,
padding: 10,
borderWidth: 4,
borderColor: '#169AC5',
borderRadius: 20,
placeHolder:'Name',
placeHolderColor:'#00549C',
textAlign:'center',
type: PhaserInput.InputType.text
});
Thanks in advance.