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-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-09- added editbone.matrix, readonly, utility property that calculates the matri...Campbell Barton
2009-12-09- rewrote arm rig so it creates 2 chains and blend them automatically (like t...Campbell Barton
2009-12-09split out driver functions into its own fileCampbell Barton
2009-12-08OSX: print warning if Blender application is located in a path Python lib can...Damien Plisson
2009-12-08compile python driver expressions for faster re-evaluation.Campbell Barton
2009-12-08- pyrna support for (value in array), currently only 1 dimensional arrays.Campbell Barton
2009-12-07- string copy without .py wasnt terminating the stringCampbell Barton
2009-12-07[#20021] Non-ASCII characters on blender 2.5 alpha 0Campbell 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-05Support for the C Macro system in Python.Martin Poirier
2009-12-04- property decorators for setting attributes didnt work, hack to prevent ever...Campbell Barton
2009-12-01User Script support added back.Campbell Barton
2009-11-30- added a new math function double_round, useful for rounding a number to a n...Campbell Barton
2009-11-29- access to a nurbs points was broken - sizeof(BPoint) vs sizeof(BPoint *) Campbell Barton
2009-11-29Draw function for operators (just like panels), used for the redo popup, file...Campbell Barton
2009-11-26Mathutils vec += vec wasnt running mathutls callbacksCampbell 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-24avoid operator type lookups when its knownCampbell Barton
2009-11-24- new pyrna api functions srna & prop path_to_id(), useful when setting drive...Campbell Barton
2009-11-23fixed some error reporting issues with calling operatorsCampbell Barton
2009-11-23workaround for an error with BKE_reportf (actually BLI_dynstr_vappendf)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- dont define properties in the global script namespaceCampbell Barton
2009-11-20option to have scripts run on startup for per blendfile UI'sCampbell 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-19operators were copying the properties from the rna operator into the class in...Campbell Barton
2009-11-19idprop.get(key, default=None)Campbell Barton
2009-11-19operator properties were not the correct typeCampbell Barton
2009-11-19added 'hidden' option for python defined rna props, means py operators can us...Campbell Barton
2009-11-19correcting ID property list was incorrect on portingCampbell 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- in pose mode, pose bone properties are edited rather then armature boneCampbell Barton
2009-11-17- access console languages as modules rather then having the py operator call...Campbell Barton