From af7823b920029cf40da3f4869a36569d11806b4a Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Fri, 16 Mar 2018 17:03:48 +0000 Subject: [PATCH] Register some functions which Tannin created wrappers for, but omitted to make accessible from Python --- src/runner/pythonrunner.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index 2978ab8..6d8984a 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -831,6 +831,9 @@ BOOST_PYTHON_MODULE(mobase) .def("origin", bpy::pure_virtual(&MOBase::IPluginList::origin)) .def("onRefreshed", bpy::pure_virtual(&MOBase::IPluginList::onRefreshed)) .def("onPluginMoved", bpy::pure_virtual(&MOBase::IPluginList::onPluginMoved)) + .def("pluginNames", bpy::pure_virtual(&MOBase::IPluginList::pluginNames)) + .def("setState", bpy::pure_virtual(&MOBase::IPluginList::setState)) + .def("setLoadOrder", bpy::pure_virtual(&MOBase::IPluginList::setLoadOrder)) ; bpy::to_python_converter>();