Esempio n. 1
0
 public Label(Rect bounds, float depth, string text, LabelOptions opts)
     : this(new Vector3(bounds.x, bounds.y, depth), new Vector2(bounds.width, bounds.height), text, opts)
 {
 }
Esempio n. 2
0
 public Label(Vector3 position, Vector2 size, string text, LabelOptions opts)
     : base(position, size, opts)
 {
     _text = text;
     _opts = opts;
 }