September 11, 2015, 12:26 (GMT) |
API for adding and deleting BVM functions. |
September 11, 2015, 11:53 (GMT) |
New bf library 'BlenVM' ("Blender Virtual Machine", BVM), as a general purpose runtime node backend. This library provides a way to register modules and functions. Functions are simple opcode-based descriptions of functionality (programs). They can be evaluated with a simple interpreter using monolithic kernels, or could be compiled into more optimized languages via LLVM or OpenCL. |
September 11, 2015, 08:27 (GMT) |
Added an optional poll function for the generic `id` property of ObjectNodes. This allows more detailed polling of ID blocks, beside the basic type. |
September 11, 2015, 08:27 (GMT) |
Some basic nodes for nesting force fields inside the object nodes. |
September 11, 2015, 08:27 (GMT) |
Use the familiar tab/ctrl+tab keymap for opening/closing nodes. |
September 11, 2015, 08:27 (GMT) |
Fixed categories for nodes, so only the appropriate nodes for each tree type are used. |
September 11, 2015, 08:27 (GMT) |
Registering an id property type for ObjectNode subclasses is optional. |
September 11, 2015, 08:26 (GMT) |
Fix for registering RNA classes with registered parent functions. The recursive registration for functions uses a simple int array for flagging found functions. This is shared with the parent, so any child functions will overwrite parent function flags for the same index (this is not overloading). The patch now requires using a larger array that can accomodate all registerable functions from parents and children. It puts flags for parents first, then children. |
September 11, 2015, 08:25 (GMT) |
A new base type for object nodes. This includes a generic 'id' pointer for a single ID datablock pointer in the node. The ID type can be defined using the `bl_id_property_type` registerable attribute. |
September 11, 2015, 08:25 (GMT) |
Context function for getting the object nodes in the node editor. |
September 11, 2015, 08:24 (GMT) |
A basic Object node tree pointer property for use as component nodes. |
|