Skip to content

Commit 36c0996

Browse files
author
rdeioris
authored
Update Plugin_API.md
1 parent c26e429 commit 36c0996

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/Plugin_API.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
The Plugin API
2+
=
3+
4+
This API allows access to the Unreal Engine 4 plugin system (IPluginManager, and IPlugin interfaces)
5+
6+
Discovering/Listing/Referencing plugins
27
-
8+
9+
```py
10+
plugins_list = unreal_engine.get_discovered_plugins()
11+
plugins_list = unreal_engine.get_enabled_plugins()
12+
# name is the string name of the plugin (like 'UnrealEnginePython')
13+
plugin = unreal_engine.find_plugin(name)
14+
```

0 commit comments

Comments
 (0)