Guide:Mod Organizer/Python Plugins: Difference between revisions

From Step Mods | Change The Game
(Created page with "<div style="margin-top:-2px">< Guide:Mod Organizer</div> __TOC__ =How to add Python plugins to Mod Organizer= ==Requirements== * SIP: http://www.bogo...")
 
Line 5: Line 5:


==Requirements==
==Requirements==
* SIP: http://www.bogotobogo.com/python/python_cpp_sip.php - a C++ wrapper
* SIP: http://www.bogotobogo.com/python/python_cpp_sip.php - a C++ wrapper (needed for PyQt4)
* PyQt4: http://pyqt.sourceforge.net/Docs/PyQt4/installation.html - a GUI engine  
* PyQt4: http://pyqt.sourceforge.net/Docs/PyQt4/installation.html - a GUI engine  


Line 11: Line 11:


PyQt4 gives a nice General User Interface (GUI).
PyQt4 gives a nice General User Interface (GUI).


==Installation==
==Installation==

Revision as of 11:20, December 22, 2013

How to add Python plugins to Mod Organizer[edit | edit source]

Requirements[edit | edit source]

SIP provides us with the ability to call MO-internal C++ functions from within our python plugin.

PyQt4 gives a nice General User Interface (GUI).

Installation[edit | edit source]

  • install SIP
  • install PyQt4