Blender AddIn - Create Renderings

Hy,

is it possible to call Blender AddOn over .Net to create awesome Renderings? :slight_smile:

Thx & Regards
Feature

Well, it is open source so you could probably make it possible.
There is limited API to call any Python command from .NET in the IApplication interface.

See these:
IPythonCommand FindPythonCommand(string commandName)
ExecuteCommandResult ExecuteCommand(string commandName, PropertyCollection parameters)
ExecuteCommandResult ExecuteCommand2(string commandName, params object[] args)
bool ExecutePythonCommandMethod(string commandName, string methodName, string[] arguments, out object result)

The types of parameter arguments you can pass is limited, but you can work around that by using strings.

1 Like