We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e93ba05 commit 22d63cbCopy full SHA for 22d63cb
docs/Plugin_API.md
@@ -7,8 +7,14 @@ Discovering/Listing/Referencing plugins
7
-
8
9
```py
10
+import unreal_engine
11
+
12
+# get the list of all discovered plugins
13
plugins_list = unreal_engine.get_discovered_plugins()
14
15
+# get the list of enabled plugins
16
plugins_list = unreal_engine.get_enabled_plugins()
17
18
# name is the string name of the plugin (like 'UnrealEnginePython' or 'Paper2D')
19
plugin = unreal_engine.find_plugin(name)
20
```
0 commit comments