Difference between revisions of "Shape:setLineStyle"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | ''' | + | '''Class:''' [[Shape]]<br/> |
− | === | + | |
− | + | === Description === | |
− | Sets the line style | + | Sets the line style the '''Shape''' object uses for subsequent drawings. The line style remains in effect until you call ''setLineStyle()'' function with different parameters. |
− | parameters. | + | <syntaxhighlight lang="lua"> |
− | < | + | Shape:setLineStyle(width,color,alpha) |
− | + | </syntaxhighlight> | |
− | + | ||
− | </ | + | === Parameters === |
− | === | + | '''width''': (number) the line width. If this parameter is 0, line is not drawn<br/> |
− | '''width''': (number) | + | '''color''': (number, default = 0x0) the hexadecimal color value of the line<br/> |
− | '''color''': (number, default = | + | '''alpha''': (number, default = 1) the alpha value of the line color<br/> |
− | '''alpha''': (number, default = 1) | + | |
+ | {{Shape}} |
Latest revision as of 14:31, 13 July 2023
Available since: Gideros 2011.6
Class: Shape
Description
Sets the line style the Shape object uses for subsequent drawings. The line style remains in effect until you call setLineStyle() function with different parameters.
Shape:setLineStyle(width,color,alpha)
Parameters
width: (number) the line width. If this parameter is 0, line is not drawn
color: (number, default = 0x0) the hexadecimal color value of the line
alpha: (number, default = 1) the alpha value of the line color