Revision 5a12b7d by Joshua Leung November 6, 2009, 11:09 (GMT) |
Driver Scripting: Added RNA functions for adding and removing Driver Targets. Unfortunately, I couldn't do this by simply adding callbacks for the add/remove of the collection, as I've had to add to extra RNA functions to do that. Example usage - driving Lamp Distance with Cube LocZ: myOb= bpy.data.objects["Lamp"] myOb.driver_add("data.distance") # drivers is list of F-Curves that have driver data drivers= myOb.animation_data.drivers distDriver= drivers[0].driver dtar= distDriver.add_target("ctrl1") dtar.id_type= 'OBJECT' dtar.id= bpy.data.objects["Cube"] dtar.rna_path= "location" dtar.array_index= 2 |
Revision d4fe259 by Campbell Barton November 6, 2009, 10:38 (GMT) |
bring back align to view to object - In 2.4x this was numpad *, however that would only align on the Z axis. - New behavior for VIEW3D_OT_viewnumpad, holding Shift with Numpad 1/3/7 sets the left/top/front etc on the normal axis. - Uses active bone, face, edge, vert, curve handel & object (just like the view manipulator with 'Normal' selected). |
Revision cc2476f by Campbell Barton November 6, 2009, 08:53 (GMT) |
patch from Stani, support for function arguments in autocomplete |
Revision e1e6391 by Joshua Leung November 6, 2009, 08:32 (GMT) |
Fix for scons + mingw compiling Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory. |
Revision d315af7 by Benoit Bolsee November 5, 2009, 21:34 (GMT) |
Update MSVC project files for openCollada. |
Revision 6771a0c by Brecht Van Lommel November 5, 2009, 20:51 (GMT) |
Fix #19763: crash with tooltip open & maximizing area to fullscreen. |
November 5, 2009, 20:35 (GMT) |
Simple one liner.... Added options to add Flip normals to toolbar. (iCer on irc is responsible) Kent |
Revision 43d916c by Brecht Van Lommel November 5, 2009, 20:32 (GMT) |
Fix bug #19754: alt + scrollwheel to change button values was not working in popup menus, silly workaround now until this uses modal keymaps. |
Revision c0bfa4e by Brecht Van Lommel November 5, 2009, 19:32 (GMT) |
Fix for bug #19692: setting text on curve, bevel or taper object did not update dependency graph causing missing updates. |
Revision 44db0b0 by Campbell Barton November 5, 2009, 19:31 (GMT) |
view docs was broken for operators - was getting the nested class string. |
Revision 17c323b by Brecht Van Lommel November 5, 2009, 19:06 (GMT) |
Fix for bug #19817: cloth simulation with collision slow on Mac. The cause of this is in the bullet library, seems like some kind of poor handling of many repeated allocations by Mac OS X, but the allocation is unnecessary, so removed it. Patch submitted to bullet: http://code.google.com/p/bullet/issues/detail?id=303 |
Revision aec92dd by Campbell Barton November 5, 2009, 18:29 (GMT) |
operator to select pos/neg verts on any axis relative to the active vertex - useful to select the center verts of a model without having to attempt to border select - useful for selecting one half or a model |
Revision 1196947 by Brecht Van Lommel November 5, 2009, 18:17 (GMT) |
Fix makefiles for modifiers commit. |
Revision 1e40add by Brecht Van Lommel November 5, 2009, 18:05 (GMT) |
2.5 Modifiers: mesh deform, boolean and decimation work again. |
Revision bdfa652 by Campbell Barton November 5, 2009, 17:43 (GMT) |
adding group instances didnt do an undo push |
Revision 8109b13 by Campbell Barton November 5, 2009, 17:32 (GMT) |
- converted circle select use a modal map - now works exactly like 2.4x, except that its accessed from the CKey - hack to remember circle size, need some better way to do this |
Revision aec5fb9 by Brecht Van Lommel November 5, 2009, 17:28 (GMT) |
Fix warnings in RNA, one being an actual bug in setting an object's layer. |
Revision 93b2ed3 by William Reynish November 5, 2009, 17:22 (GMT) |
Moved the object and bone name fields out of the Transform panel in 3Dview properties. They're in a new panel now called 'Item'. Needs an update in the B.blend to put it on the top. |
Revision 82baca3 by Brecht Van Lommel November 5, 2009, 16:40 (GMT) |
Fix for bug #19807: renaming texture layers in editmode crashes. |
Revision 18e069f by Campbell Barton November 5, 2009, 16:30 (GMT) |
only run the banner function for console (not reports) |
|