Beyond_Beyaan.BBSingleLineTextBox.Update C# (CSharp) 메소드

Update() 공개 메소드

public Update ( float frameDeltaTime ) : void
frameDeltaTime float
리턴 void
        public void Update(float frameDeltaTime)
        {
            if (isSelected)
            {
                timer += frameDeltaTime;
                if (timer >= 0.25f)
                {
                    blink = !blink;
                    text.SetText(Text + (blink ? "|" : ""));
                    timer -= 0.25f;
                }
            }
        }