🍭Render
Box_Outline / OUTDATED
MTools.Render.Box_Outline(vectors, colors, roundings);
vectors
table
Two vectors for the position.
colors
table
Four colors for gradients.
roundings
table
Four boolean values for rounding.
Allows you to make an outline with different colors and roundings. ! WARNING ! This method may be disabled soon due to obsolescence. New method: #modern-box Example usage:
Box_Outline_Glow
MTools.Render.Box_Outline_Glow(vectors, clr, thickness, rounding);
vectors
table
Two vectors for the position.
clr
color
Color for glow.
thickness
number
Amount of glow.
rounding
number
The rounding of the glow.
Allows you to make a nice glow + rounded. Example usage:
Histogram
MTools.Render.Histogram(vectors, clr, steps, round);
vectors
table
Two vectors, first position second size.
clr
table / color
Color for the pattern. Specifying in the array will be color.
steps
table
Unlimited number of dots as numbers.
rounding
number
Rounding out the posts.
Allows you to create a histogram. Example usage:
Graphic
MTools.Render.Graphic(vectors, clr, steps);
vectors
table
Two vectors, first position second size.
clr
table / color
Color for the pattern. Specifying in the array will be color.
steps
table
Unlimited number of dots as numbers.
Allows you to create a Graphic. Example usage:
Modern / Box
MTools.Modern.Box(vectors, rounding, color);
vectors
table
Two vectors for the position.
rounding
table
Four numeric values for rounding.
color
color
Box color.
Allows you to create a box with different rounded edges. Example usage:
Modern / Box_outline
MTools.Modern.Box_Outline(vectors, rounding, color, thickness);
vectors
table
Two vectors for the position.
rounding
table
Four numeric values for rounding.
color
color
Outline color.
thickness
number
Outline thickness.
Allows you to create an outline with different rounded edges. Example usage:
Last updated