Blink.GUI.TextButton.SetText C# (CSharp) 메소드

SetText() 공개 메소드

public SetText ( String text ) : void
text String
리턴 void
        public void SetText(String text)
        {
            this.text = text;
            this.size = new Vector2(FONT_SIZE * text.Length + 2*MARGIN, this.size.Y);
        }