diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-24 23:16:30 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-24 23:16:30 +0100 |
| commit | 7dfba3cda9f13427f9f10a6eefbec52aef62274c (patch) | |
| tree | 37231b14dfe24e8597ca5c780bb151696cda9b57 /doc/classes/Line2D.xml | |
| parent | 2bc6db65c14f00de5a0349e910037ca2db7fc103 (diff) | |
| download | redot-engine-7dfba3cda9f13427f9f10a6eefbec52aef62274c.tar.gz | |
doc: Fix enum tags thanks to 2bc6db6
Diffstat (limited to 'doc/classes/Line2D.xml')
| -rw-r--r-- | doc/classes/Line2D.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/classes/Line2D.xml b/doc/classes/Line2D.xml index 4b3a7aa9a9..9455882f02 100644 --- a/doc/classes/Line2D.xml +++ b/doc/classes/Line2D.xml @@ -93,28 +93,28 @@ </member> </members> <constants> - <constant name="LINE_JOINT_SHARP" value="0"> + <constant name="LINE_JOINT_SHARP" value="0" enum="LineJointMode"> The line's joints will be pointy. If [code]sharp_limit[/code] is greater than the rotation of a joint, it becomes a bevel joint instead. </constant> - <constant name="LINE_JOINT_BEVEL" value="1"> + <constant name="LINE_JOINT_BEVEL" value="1" enum="LineJointMode"> The line's joints will be bevelled/chamfered. </constant> - <constant name="LINE_JOINT_ROUND" value="2"> + <constant name="LINE_JOINT_ROUND" value="2" enum="LineJointMode"> The line's joints will be rounded. </constant> - <constant name="LINE_CAP_NONE" value="0"> + <constant name="LINE_CAP_NONE" value="0" enum="LineCapMode"> Don't have a line cap. </constant> - <constant name="LINE_CAP_BOX" value="1"> + <constant name="LINE_CAP_BOX" value="1" enum="LineCapMode"> Draws the line cap as a box. </constant> - <constant name="LINE_CAP_ROUND" value="2"> + <constant name="LINE_CAP_ROUND" value="2" enum="LineCapMode"> Draws the line cap as a circle. </constant> - <constant name="LINE_TEXTURE_NONE" value="0"> + <constant name="LINE_TEXTURE_NONE" value="0" enum="LineTextureMode"> Takes the left pixels of the texture and renders it over the whole line. </constant> - <constant name="LINE_TEXTURE_TILE" value="1"> + <constant name="LINE_TEXTURE_TILE" value="1" enum="LineTextureMode"> Tiles the texture over the line. The texture need to be imported with Repeat Enabled for it to work properly. </constant> </constants> |
