Talker.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    public override void Update()
    {
        /*this.delay += Time.deltaTime;

        if (this.delay > 0.05) {
            if (word < this.msg.Length) {
                this.displaymsg = this.displaymsg + this.msg[word];
                this.word++;
            }
            this.delay = 0;
        }*/
    }