TextHelper.startTyping C# (CSharp) Method

startTyping() public method

public startTyping ( ) : void
return void
    public void startTyping()
    {
        if (thisText == null) {
            initComponents();
        }
        thisText.text = "";

        if (newText != null) {
            typing = true;
            StartCoroutine("typeNewText");
        }
    }

Usage Example

Beispiel #1
0
    public void startTyping()
    {
        if (windowName.newText != "")
        {
            windowName.startTyping();
        }

        if (fields.Length > 0)
        {
            for (int i = 0; i < fields.Length; i++)
            {
                fields[i].startTyping();
            }
        }
    }
All Usage Examples Of TextHelper::startTyping