Revision Difference
Entity:GetAttachments#519099
<function name="GetAttachments" parent="Entity" type="classfunc">
<description>
Returns a table containing all attachments of the given entitys model.<br>
Returns an empty table or **nil** in case it's model has no attachments.
<bug issue="3167">This can have inconsistent results in single-player.</bug>
</description>
<realm>Shared</realm>
<rets>
<ret name="" type="table">Attachment data. See <page>AttachmentData</page>.</ret>
<ret name="" type="table">Attachment data. See <page>Structures/AttachmentData</page>.</ret>
</rets>
</function>
<example>
<description>All the attachments present on the Kliener player model</description>
<code>PrintTable(LocalPlayer():GetAttachments())</code>
<output>
```
1:
id = 1
name = eyes
2:
id = 2
name = lefteye
3:
id = 3
name = righteye
4:
id = 4
name = nose
5:
id = 5
name = mouth
6:
id = 6
name = tie
7:
id = 7
name = pen
8:
id = 8
name = chest
9:
id = 9
name = hips
10:
id = 10
name = lefthand
11:
id = 11
name = righthand
12:
id = 12
name = forward
13:
id = 13
name = anim_attachment_RH
14:
id = 14
name = anim_attachment_LH
15:
id = 15
name = anim_attachment_head
```
</output>
</example>