TextHelper.stopTyping C# (CSharp) Method

stopTyping() public method

public stopTyping ( ) : void
return void
    public void stopTyping()
    {
        typing = false;
    }

Usage Example

Beispiel #1
0
 public void doPopdown()
 {
     if (!lockPopup)
     {
         popupText.stopTyping();
         popupAnim.Play("PopdownAnim");
     }
 }
All Usage Examples Of TextHelper::stopTyping