Has Blender implemented a python interface API yet? So when developing floating tools users can create a tool interface using pyside of pyqt?
This is critical to have when planning for pipeline tool development.
Has Blender implemented a python interface API yet? So when developing floating tools users can create a tool interface using pyside of pyqt?
This is critical to have when planning for pipeline tool development.
Official blender distributions include the standard python library with a few modules disabled (such as tkinter and test). I'm quite sure that numpy is the only third party module to be included.
Blender uses it's own GUI widget library and provides a python api for us to add custom interface layouts. While you can ask the developers to add other modules, you shouldn't expect other third party modules to be added to the standard install.
You do have several options -