Revision Difference
engine.GetAddons#515613
<function name="GetAddons" parent="engine" type="libraryfunc">⤶
<description>⤶
Returns a list of addons the player have subscribed to on the workshop.⤶
⤶
This list will also include "Floating" .gma addons that are mounted by the game, but not the folder addons.⤶
</description>⤶
<realm>Shared and Menu</realm>⤶
<rets>⤶
<ret name="" type="table">A table with 6 keys (downloaded, models, title, file, mounted, wsid)</ret>⤶
</rets>⤶
</function>⤶
⤶
<example>⤶
<description>Will return a list of all the workshop addons you have downloaded / are downloading.</description>⤶
<code>PrintTable(engine.GetAddons())</code>⤶
<output>⤶
⤶
```⤶
1:⤶
downloaded = true ⤶
models = 0 ⤶
title = Title of Addon ⤶
file = addons/title_of_addon_123456789.gma ⤶
mounted = true⤶
wsid = 123456789⤶
```⤶
⤶
</output>⤶
⤶
</example>