-
Notifications
You must be signed in to change notification settings - Fork 9
Home
Al edited this page May 21, 2020
·
4 revisions
The plugin_python repository contains the implementation of the proxy plugin for python language plugins in Mod Organizer 2.
This Wiki is intended for MO2 developers, not plugin creators. If you are looking for documentation on how to create a python plugin, please refer to the MO2 wiki.
The project is made of two sub-projects: runner
and proxy
.
The proxy
only contains the ProxyPython
implementation which is the C++ proxy plugin
that is actually loaded by MO2.
The runner
project contains all the bindings between uibase
and python.
If you need to modify the python interface, e.g. following uibase
changes, you only need
to take a look at the runner
project.