We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c26e429 commit 36c0996Copy full SHA for 36c0996
docs/Plugin_API.md
@@ -1,2 +1,14 @@
1
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
7
-
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