Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2009-12-24support for registering operators using the same internal rna api as panels, ...Campbell Barton
2009-12-24minor pyapi changesCampbell Barton
2009-12-13use tp_getset rather then checking the string on getattr for 'id_data' attributeCampbell Barton
2009-12-11[#20288] FBX exporter failsCampbell Barton
2009-12-10return value was included in the list of optional args for function-rna error...Campbell Barton
2009-12-10remove ICON prefix from the enum, for python this is redundant eg.Campbell Barton
2009-12-10values that had units set would not be coerced into Mathutils types by the py...Campbell Barton
2009-12-08- pyrna support for (value in array), currently only 1 dimensional arrays.Campbell Barton
2009-12-07use sets rather then tuples for enum/flags so you can use bitfield operatorsCampbell Barton
2009-12-07rna flag PROP_ENUM_FLAG which makes rna props a tuple of enums when converted...Campbell Barton
2009-12-06remove nasty hack which made StructRNA class instaces have no __dict__,Campbell Barton
2009-12-04- property decorators for setting attributes didnt work, hack to prevent ever...Campbell Barton
2009-11-25rna py api,Campbell Barton
2009-11-25Assorted fixes - compile + drivers:Joshua Leung
2009-11-24disallow dynamic sized rna arrays to be returned as mathutils types since it ...Campbell Barton
2009-11-24- new pyrna api functions srna & prop path_to_id(), useful when setting drive...Campbell Barton
2009-11-23bugfix: uninitialized valuesCampbell Barton
2009-11-23rna functions were getting away with passing the string "True" instead of Tru...Campbell Barton
2009-11-22remove template uiTemplate_view3d_select_faceselmenuCampbell Barton
2009-11-21left in printCampbell Barton
2009-11-20use a metaclass to have operator attributes register and display in the order...Campbell Barton
2009-11-20- dir() now works for collection functionsCampbell Barton
2009-11-19- StructRNA's __dir__ was missing members from its classes __dict__Campbell Barton
2009-11-19added 'hidden' option for python defined rna props, means py operators can us...Campbell Barton
2009-11-19- remove CPPFLAG XP_UNIX from CMake, Scons and Irix make, checked our own cod...Campbell Barton
2009-11-18ID properties that are displayed via RNA can now define their own UI settings,Campbell Barton
2009-11-18fix for memory leak, use Key Errors for pyrna getitem access & idpropsCampbell Barton
2009-11-18- rna attribute setting problem, class instances could not set their own attr...Campbell Barton
2009-11-17make animation system and rna internals use getattr style syntax for user def...Campbell Barton
2009-11-17- access console languages as modules rather then having the py operator call...Campbell Barton
2009-11-17my chnges broke 'del idprop["key"]'Campbell Barton
2009-11-16bpy/rna methods to find properties (works nice with autocomp!)Campbell Barton
2009-11-16ID property access from python for pose channels, bones and any ID objects.Campbell Barton
2009-11-16functions returning non ID pointers that relied on having the ID set could cr...Campbell Barton
2009-11-15skip rna property & function lookups for members starting with "_" (since mak...Campbell Barton
2009-11-13fix for error with property getattro in recent commit which broke autocomp.Campbell Barton
2009-11-13arbitrary property and function support for rna properties (arrays and collec...Campbell Barton
2009-11-12generating docs can make the rna api generate wrnings (which is fine)Campbell Barton
2009-11-11- use double underscores to hide members in python (removes them from dir() t...Campbell Barton
2009-11-11python api for collection add()/remove()Campbell Barton
2009-11-11Nodes Editor + other warning fixes:Joshua Leung
2009-11-11- In the context, EditBones and Bases were set as 'RNA_UnknownType', replaced...Campbell Barton
2009-11-10modify the python context access so invalid names will raise an exception rat...Campbell Barton
2009-11-10Don't free Context from python.Martin Poirier
2009-11-08bpy/rna api class featureCampbell Barton
2009-11-08pep8 whitespace commitCampbell Barton
2009-11-04python function for adding a driver. egCampbell Barton
2009-11-04change to insert_keyframe() so an array index of -1 keys all arrays indicesCampbell Barton
2009-11-03active property for collections for things like scene.objects.activeCampbell Barton
2009-11-02rna structs would not raise an error when assigning invalid propertiesCampbell Barton