public NuiDrawListCurve(NuiProperty <Color> color, NuiProperty <float> lineThickness, NuiProperty <NuiVector> pointA, NuiProperty <NuiVector> pointB, NuiProperty <NuiVector> control0, NuiProperty <NuiVector> control1) : base(color, false, lineThickness) { PointA = pointA; PointB = pointB; Control0 = control0; Control1 = control1; }
public NuiTextEdit(NuiProperty <string> label, NuiProperty <string> value, ushort maxLength, bool multiLine) { Label = label; Value = value; MaxLength = maxLength; MultiLine = multiLine; }
public NuiChartSlot(NuiChartType chartType, NuiProperty <string> legend, NuiProperty <Color> color, NuiProperty <List <float> > data) { ChartType = chartType; Legend = legend; Color = color; Data = data; }
public NuiDrawListArc(NuiProperty <Color> color, NuiProperty <bool> fill, NuiProperty <float> lineThickness, NuiProperty <NuiVector> center, NuiProperty <float> radius, NuiProperty <float> angleMin, NuiProperty <float> angleMax) : base(color, fill, lineThickness) { Center = center; Radius = radius; AngleMin = angleMin; AngleMax = angleMax; }
public NuiDrawListImage(NuiProperty <string> resRef, NuiProperty <NuiRect> rect) : base(null, null, null) { ResRef = resRef; Rect = rect; }
protected NuiDrawListItem(NuiProperty <Color>?color, NuiProperty <bool>?fill, NuiProperty <float>?lineThickness) { Color = color; Fill = fill; LineThickness = lineThickness; }
public NuiColorPicker(NuiProperty <Color> color) { Color = color; }
public NuiDrawListPolyLine(NuiProperty <Color> color, NuiProperty <bool> fill, NuiProperty <float> lineThickness, List <float> points) : base(color, fill, lineThickness) { Points = points; }
public NuiText(NuiProperty <string> text) { Text = text; }
public NuiDrawListCircle(NuiProperty <Color> color, NuiProperty <bool> fill, NuiProperty <float> lineThickness, NuiProperty <NuiRect> rect) : base(color, fill, lineThickness) { Rect = rect; }
public NuiProgress(NuiProperty <float> value) { Value = value; }
public NuiWindow(NuiLayout root, NuiProperty<string> title) { Title = title; Root = root; }
public NuiButton(NuiProperty <string> label) { Label = label; }
public NuiLabel(NuiProperty <string> label) { Label = label; }
public NuiSlider(NuiProperty <int> value, NuiProperty <int> min, NuiProperty <int> max) { Value = value; Min = min; Max = max; }
public NuiList(IReadOnlyCollection <NuiListTemplateCell> rowTemplate, NuiProperty <int> rowCount) { RowTemplate = new List <NuiListTemplateCell>(rowTemplate); RowCount = rowCount; }
public NuiCheck(NuiProperty <string> label, NuiProperty <bool> selected) { Label = label; Selected = selected; }
public NuiSliderFloat(NuiProperty <float> value, NuiProperty <float> min, NuiProperty <float> max) { Value = value; Min = min; Max = max; }
public NuiButtonImage(NuiProperty <string> resRef) { ResRef = resRef; }
public NuiButtonSelect(NuiProperty <string> label, NuiProperty <bool> selected) { Label = label; Selected = selected; }
public NuiDrawListText(NuiProperty <Color> color, NuiProperty <NuiRect> rect, NuiProperty <string> text) : base(color, null, null) { Rect = rect; Text = text; }