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
path: root/doc
AgeCommit message (Collapse)Author
2011-09-16- remove deprecated pose channel membersCampbell Barton
- change short -> char for flags that support it. - add pose 'temp' pointer to use for outliner drawing (was using 'prev' and restoring which seems dodjy)
2011-09-15- include enum names and descriptions in sphinx generated documentationCampbell Barton
- add descriptions for operator bl_options
2011-09-15move utf8 string.c functions into their own file, also add python tip for ↵Campbell Barton
printing operators.
2011-09-11added section about editmode switching to gotchasCampbell Barton
2011-09-10spelling corrections from Philippe CasteleynCampbell Barton
2011-09-09GPU: add gpu python module with export_shader() function to export GLSL shader.Benoit Bolsee
shader = gpu.export_shader(scene,material) Returns the GLSL shader that blender generates to produce the visual effect of material in scene for the purpose of reusing the shader in an external engine. This function is meant to be used in a material exporter so that the GLSL shader can be exported entirely. The return value is a dictionary containing the shader source code and all associated data. The full documentation is under sphinx. Warning: there has been an API between the patch and this commit: uniform['lamp'] and uniform['image'] now return python reference to ID block instead of ID name as before. The X3D exporter that uses this function must be adapted.
2011-09-09bpy api - add new page for best-practice (so Thomas has something to point ↵Campbell Barton
to when kicking devs for writing shoddy UI layouts)
2011-09-08correction to docs.Campbell Barton
2011-09-08fix for misc py errors + some pep8 edits.Campbell Barton
2011-09-08finished tips and tricks section of blender/python api docs, now included in ↵Campbell Barton
generated docs.
2011-09-07interface + naming improvements to vertex wright modifierCampbell Barton
- WeightVG -> Vertex Weight - mapping_mode -> falloff_type - nicer layout for VertexWeightModifiers add/remove options
2011-09-06more minor doc fixesCampbell Barton
2011-09-06fix for doc building after pepper merge, also WIP tips/tricks.Campbell Barton
2011-09-02BGE animations: adding a missing comma.Mitchell Stokes
2011-09-01wip doc for py api tips and tricks.Campbell Barton
2011-09-01BGE animations: Updating some constant names. They were still the originally ↵Mitchell Stokes
proposed names instead of the ones that are actually used now.
2011-09-01BGE Animations: The return type for KX_GameObject.getActionFrame() was an ↵Mitchell Stokes
integer when it should have been a float. I've fixed this and converted the tabs in the new BGE animation docs to space. I have also added more info on return types for KX_GameObject.getActionFrame() and KX_GameObject.isPlayingAction().
2011-08-31BGE: Adding two new functions to bge.render to allow users to change the ↵Mitchell Stokes
anisotropic filtering level used by textures: * setAnisotropicFiltering(level) * getAnisotropicFiltering()
2011-08-30minor edits, pep8 - also correct float -> double promotion for blf.Campbell Barton
2011-08-30* Merge trunk up to r39790.soc-2011-pepperJoerg Mueller
* Subversion bump (also for init_userdef_do_versions). * Minor fix for compilation without ffmpeg.
2011-08-27- use python convention for headingsCampbell Barton
- use implicit examples rather than .. code-block::
2011-08-27bpy Gotcha's section on bones by Bassam Kurdali, with some edit.Campbell Barton
added some examples & notes too.
2011-08-26correct missing bpy doc references.Campbell Barton
2011-08-26added a section to gotcha's python bpy docs about unicode encoding problems.Campbell Barton
2011-08-26document some of the pitfalls in the blender python api (taken from frequent ↵Campbell Barton
mails and bug reports)
2011-08-25picky style edits with screen/view/drawing, also remove own bad example doc.Campbell Barton
2011-08-25SVN maintenance.Guillermo S. Romero
2011-08-25move wiki api intro and overview docs into the api reference docs.Campbell Barton
Updated docs since some parts still were from beta still.
2011-08-23add warning about misuse of ID.user_clear() since it can crash blender.Campbell Barton
2011-08-23Merging trunk up to r39637.Joerg Mueller
2011-08-21Fix #28154: linux3-config.py doesn't existSergey Sharybin
Change OURPLATFORM from "linux<major_version>" to simple "linux". Since new policy for linux kernel versions that major version in platform doesn't make much sense for building rules so the same rules could be used for both of linux2 and linux3 now/ Tested on both of linux2 and linux3 systems.
2011-08-11svn merge -r39145:39286 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-08-09fix [#28191] Exception when enabling a script for a newer Blender buildCampbell Barton
2011-08-09note to address issue raised by report [#28190].Campbell Barton
2011-08-09change doxygen string to 2.59Campbell Barton
2011-08-07Merging trunk up to r39145.Joerg Mueller
2011-08-04rst API doc fixes: literalincluding bge.texture and bge.constraints examples ↵Dalai Felinto
+ bgl fixes
2011-08-03* Merging trunk up to r38981.Joerg Mueller
* Fixing a minor issue in a previous commit.
2011-08-03fix [#28151] export OBJ don't save the extensionCampbell Barton
also correct some typos
2011-08-02Merging trunk up to r38932.Joerg Mueller
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-31patch [#27909] Added constants in bge.constraints by Solano Felicio (solano) ↵Dalai Felinto
+ some changes in rst I named all the BGE modules with their actual names (e.g. Rasterizer, Video Texture, ...). so in the API index.html page they look more like the other Blender modules. I did the same for the bgl module. For bge.constraints this patch exposes the constants values for debug mode and createConstraints (they were hardcoded innts before). + making all the "todo" and #comments into rst comments (.. comments) Thanks Solano, it's great to get help to those tasks :)
2011-07-30Merging up to trunk r38834.Joerg Mueller
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-28automatically update the redirect from ↵Campbell Barton
http://www.blender.org/documentation/250PythonDoc/ when uploading docs
2011-07-26py api:Campbell Barton
- added menu templates - move template menu into the header of the text editor (so users will find more easily) - updated mathutils examples, switching the order of multiplication.
2011-07-22Merge with trunk up to r38584.Joerg Mueller
2011-07-16BGE Animations: Updating the python docs.Mitchell Stokes
2011-07-14rename bgl.Buffer attribute list to a method, to_list() as used for IDProps, ↵Campbell Barton
also made repr function nicer.
2011-07-13SVN maintenance.Guillermo S. Romero