Skip to content

Commit 22d63cb

Browse files
author
rdeioris
authored
Update Plugin_API.md
1 parent e93ba05 commit 22d63cb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/Plugin_API.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,14 @@ Discovering/Listing/Referencing plugins
77
-
88

99
```py
10+
import unreal_engine
11+
12+
# get the list of all discovered plugins
1013
plugins_list = unreal_engine.get_discovered_plugins()
14+
15+
# get the list of enabled plugins
1116
plugins_list = unreal_engine.get_enabled_plugins()
17+
1218
# name is the string name of the plugin (like 'UnrealEnginePython' or 'Paper2D')
1319
plugin = unreal_engine.find_plugin(name)
1420
```

0 commit comments

Comments
 (0)