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-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-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-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-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-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-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-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-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-27moved modules added to changelog (this isn't detected by the changelog ↵Campbell Barton
generator)
2011-06-22update automatic rna changelogCampbell Barton
2011-06-14fix [#27659] Segfault when adding None to a groupCampbell Barton
2011-06-14include some useful info in bge docs, by ZiauddinMK on IRC.Campbell Barton
2011-06-13BGE Patch: [#27425] Allow to change the damping of the camera actuatorDalai Felinto
########## original name: "Allow to change the strenght of the "go behind" constraint of the camera actuator" The camera actuator is an actuator that drive the camera to follow an object, with a set of constraint. Currently, when the object followed rotate on himself (like a person, or an helicopter), the camera is really slow to go behind (at least 10 seconds). This patch gives the UI to tweak the strenght of the 'go behind'[named damping] constraint. ########### epydocs (rst) updated too
2011-04-07Sphinx RNA API changelog generator.Campbell Barton
- lists added and removed functions and properties. - lists renamed properties (does fuzzy comparison using min/max, description, type) - lists functions with arguments changed. Committed change log from 2.56 -> 2.57: http://www.blender.org/documentation/250PythonDoc/change_log.html
2011-04-07Updating BGE dynamic loading docs:Mitchell Stokes
* Adding load_action and verbose keyword args for LibLoad() * Adding LibList()
2011-02-21remove BGE's PyObjectPlus.isA method docs, was removed in favor of built-in ↵Campbell Barton
isinstance(), report [#26080].
2010-10-13== python api doc ==Luca Bonavita
First commit to make some structure in doc/ directory. - moved source/blender/python/doc -> doc/python_api - moved source/gameengine/PyDoc/*.rst -> doc/python_api/rst - modified accordingly sphinx_doc_gen.py and sphinx_doc_gen.sh (later on I'll try alternative/ scripts by neXyon as promised :) - source/gameengine/PyDoc/ is still there because contains epydoc stuff for the bge, will ask more and look into it later