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 (Collapse)Author
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-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-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
2011-07-12Merging trunk up to r38329.Joerg Mueller
2011-07-08example of Physics Constraints module :)Dalai Felinto
+ some small fixes in other docs. A topic for later(soon?), I think we should name the modules according to the rest of Blender modules. So instead of: Game Engine bge.logic Module We would have it: Game Logic (bge.logic) ...
2011-07-08patch [#27885] bge.constraints documentationCampbell Barton
by Solano Felicio (solano)
2011-07-08fix for exampleCampbell Barton
2011-07-07bge.texture doc, needed whitespace to format correctly.Campbell Barton
2011-07-07some corrections to bge.texture docsCampbell Barton
2011-07-07Merging trunk up to r38167.Joerg Mueller
2011-07-06an example for blf - a basic Hello World (for bge, not blender)Dalai Felinto
2011-07-06new example for bge.texture, a basic texture replacementDalai Felinto
fresh simple and didactic example straight from my bge book, enjoy it ;) video texture documentation online ... tears dropping.
2011-07-06moving bge.texture example to an external fileDalai Felinto
2011-07-06patch [#27871] bge.texture documentation from Solano Felício (+ changes ↵Dalai Felinto
from me) it still needs work ... and I can't test rst in windows so for now let's pretend it builds. If someone can generate the docs and see how it goes please let me know. (plus a small fix for bge.logic rst)
2011-07-06BGE Animations: Updating the bge.types docs to include the three new methods ↵Mitchell Stokes
to KX_GameObject: playAction(), getActionFrame(), setActionFrame().
2011-07-01add 'bgl' OpenGL doc to sphinxCampbell Barton
2011-07-01moving BGL to rst format, first move file.Campbell Barton
2011-06-27remove some unused flags and correct aud example headingCampbell Barton
2011-06-27basic sound playback example for audspace moduleDalai Felinto
(I'm on windows at the moment so I can't test it. Hopefully it should be fine)