Ep 16. UI keyboard - GUI unity 5 keyboard

Published: 05 March 2017
on channel: Troublesome Girl
26,277
325

This tutorial is sharing the UI keyboard using unity 5. The keyboard can be clicked and the clicked alphabet is displayed. This video a bit noise, really sorry for that. Please do not dislike my video, I do research on how to do UI keyboard to hard. So please give me some motivation instead of bad comment. It really hurt as this video really earn too little. Till now my earning for all my videos is less than one dollar. Please do not let me feel upset. Donate me... my paypal is [email protected]

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class name : MonoBehaviour {

string word = null;
int wordIndex = 0;
string alpha;
public Text myName = null;
// Use this for initialization

public void alphabetFunction (string alphabet)
{
wordIndex++;
word = word + alphabet;
myName.text = word;

}
}


Watch video Ep 16. UI keyboard - GUI unity 5 keyboard online without registration, duration hours minute second in high quality. This video was added by user Troublesome Girl 05 March 2017, don't forget to share it with your friends and acquaintances, it has been viewed on our site 26,27 once and liked it 32 people.