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
2012-07-09As a response to issue [#28483] "Enable/Disable Rigid Body actuator do ↵Mitchell Stokes
nothing" reported by Jean-Francois Gallant (pyroevil), I'm adding preliminary support to enable and disable rigid body physics on dynamic objects. This is can be done via the Edit Object Actuator or through KX_GameObject.enableRigidBody() and KX_GameObject.disableRigidBody(). Thanks to Sergej Reich for his help with the patch.
2012-07-07Adding a note to KX_Camera.projection_matrix and KX_Camera.modelview_matrix ↵Mitchell Stokes
to warn that both values are the identity matrix prior to the first frame of rendering. Both values are calculated when rendering, which is after Python scripts have a chance to run on frame 1.
2012-07-04Spellfixes: colour -> colorBastien Montagne
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-06-28document calling operators with undo enabled.Campbell Barton
2012-06-28Removing channel manipulation from the Action Actuator Python API since this ↵Mitchell Stokes
has been broken since the animation changes from Pepper. BL_ArmatureObject.channels should be used instead. For more information see bug #28843 for more info: http://projects.blender.org/tracker/index.php?func=detail&aid=28843&group_id=9&atid=306
2012-06-28bge.logic.keyboard.getClipboard() and .setClipboard methodsDalai Felinto
the idea of using methods instead of attributes is to avoid users abusing of the system calls. Thanks Campbell Barton for reviewing and small corrections
2012-06-25style cleanupCampbell Barton
2012-06-20style cleanupCampbell Barton
2012-06-17code cleanup: includes, also correct some py example typosCampbell Barton
2012-06-14KX_RadarSensor.getConeHeight() not longer exists, removing it from the docs.Mitchell Stokes
2012-06-14Fix for [#31813] "bge.types.KX_RadarSensor incorrect attributes" reported by ↵Mitchell Stokes
Monster. KX_RadarSensor.angle was returning the angle that was used to construct Bullet's physics shape, which is calculated from the logic brick gui. KX_RadarSensor.angle now recalculates the original value from the gui. However, m_coneradius isn't actually used by KX_RadarSensor that I can see, so it might be better to just assign the original angle to m_coneradius instead of the calculated value. I've also made KX_RadarSensor.angle read-only, since setting m_coneradius does not appear to have any affect, which means writing to KX_RadarSensor.angle never worked properly.
2012-06-11minor fixesCampbell Barton
- new compositor could use uninitialized var - profile conversion could use uninitialized var - set better warnings for clang+cmake. - remove picky warnings from sphinx doc gen shell script.
2012-06-11updates to context docs and add missing member to node context ↵Campbell Barton
'node_context_dir'.
2012-06-06Added example of basic objects ooperations in Python, liek adding objectSergey Sharybin
datablock, adding object, linking it to scene and making selected and active.
2012-05-25patch [#31594] [Documentation]: fix for example in bge.render.rstCampbell Barton
by Philipp Oeser (lichtwerk)
2012-05-22expanding bmesh example (py api)Dalai Felinto
2012-05-22style cleanupCampbell Barton
also fix example for mesh uv's
2012-05-22fix for bmesh api exampleDalai Felinto
worth noticing is that the example in bpy.types.Mesh is wrong too (Mesh type does not have an uv element) but I would prefer someone more familiar with bmesh to take a look at those
2012-05-02Python: documentation about overriding context members.Brecht Van Lommel
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2012-05-02patch [#31216] OpenGL urls updated by Julien DUROURE (julien)Dalai Felinto
update for the apidocs for the BGL module
2012-05-01code cleanup: tag unused varsCampbell Barton
2012-04-26Release commit, 2.63!Sergey Sharybin
Special thanks to Mango team for awesome splash screen! And everybody else who made this release! :)
2012-04-23add mesh example with docs explaining polygon / loop relationshipCampbell Barton
2012-04-23rename Mesh.uv_loop_layers --> uv_layersCampbell Barton
add filtering for document generator to support --partial bpy.types.SomeType
2012-04-20style cleanup: pep8, also quiet compiler warning.Campbell Barton
2012-04-05updated man pageCampbell Barton
2012-03-29added Mesh.calc_tessface(), needed to update mesh tessface after bmesh edits.Campbell Barton
also add py api BMDeformVert.clear()
2012-03-27bmesh py api:Campbell Barton
added access to deform weights, access to weights acts like a python dict so you can do... print(group in dvert) dvert[group] = 0.5 print(dvert[group]) del dvert[group] print(dvert.items())
2012-03-24style cleanup: pep8, indentationCampbell Barton
2012-03-23Fixed a couple of typos in the Python API docsHoward Trickey
2012-03-23doc cleanup: minor corrections and improvements to docstrings + recent doc ↵Campbell Barton
changes.
2012-03-23rna/python api change: rename Mesh.faces --> tessfaces, since existing ↵Campbell Barton
scripts are using this to modify the mesh and its confusing that the edits are not kept. This also makes it clearer that the faces are for tessellated results only. Added a section on the Gotcha's about upgrading scripts, the pros and cons of MeshTessFace/MeshPoly/BMFace. and spesifically how to upgrade importers and exporters for 2.63+.
2012-03-21Fix #30622: documentation example code for bge.types.KX_MeshProxy did not work,Sergey Sharybin
using fix suggested by Ryan King.
2012-03-21bmesh docs:Campbell Barton
- add examples for custom-data access - group BMesh types logically in docs - added missing docstrings needed to add grouping functionality to sphinx for this.
2012-03-21minor changes to sphinx doc generator title formattingCampbell Barton
2012-03-16== Python API docs ==Luca Bonavita
Small fixes (thanks Terry Wallwork for reporting) - adding logger filehandler in main () so that ARGS.output_dir exists, otherwise we get an IOError - the zip was not including files in a container directory
2012-03-16== Python API docs ==Luca Bonavita
Committing a patch similar to revision 44887 with fixes to my own bugs (sorry Campbell, and thanks for reviewing :) Fixes ------ - examples/ svn directory not removed anymore (in-source builds possible again) - fixed "include references somehow stopped working" + using shutils.makearchive() to zip the file New command line options ------------------------ -l: Log the output of the api dump and sphinx|latex warnings and errors If given, save logs in: * OUTPUT_DIR/.bpy.log * OUTPUT_DIR/.sphinx-build.log * OUTPUT_DIR/.sphinx-build_pdf.log * OUTPUT_DIR/.latex_make.log (using only one log directive instead of -l for bpy and -L for sphinx) -P: builds the pdf -R: pack the files in a dir ready for online deployment (including the zip and the pdf eventually) Example usage: ./blender.bin -b -P doc/python_api/sphinx_doc_gen.py -- -p bmesh* -o ./<OUTPUTDIR> -B -P -R -l
2012-03-15revert r44887, changes were OK but caused too many problems, better do this ↵Campbell Barton
as a smaller patch. sphinx_doc_gen.sh broke building docs - - examples/ svn directory was being removed since it assumed an out-of-source build. - include references somehow stopped working (didnt find why). also fixed an unrelated error with building docs in object_utils.py
2012-03-15== Python API docs ==Luca Bonavita
New command line options: -l: logs bpy dumping problems in OUTPUT_DIR/.bpy.log -L: logs sphinx|latex problems in: * OUTPUT_DIR/.sphinx-build.log (sphinx building html problems) * OUTPUT_DIR/.sphinx-build_pdf.log (sphinx building latex problems) * OUTPUT_DIR/.latex_make.log (latex make problems) -P: builds the pdf -R: pack the files in a dir ready for online deployment (including the zip and the pdf eventually) Example usage: ./cmake/bin/blender -b -P ./blender/doc/python_api/sphinx_doc_gen.py -- -p bmesh* -l -o ./python_api -B -P -R -L
2012-03-14bmesh py api: finished todo - editable select_historyCampbell Barton
eg: bm.select_history = vert, face, edge bm.select_history.add(edge)
2012-03-13bmesh py api: more comprehensive intro page, also fix some spelling errors.Campbell Barton
2012-03-12Fix #30524: documentation example code for bge.types.KX_MeshProxy did not work,Brecht Van Lommel
using fix suggested by Ryan King.
2012-03-10code cleanup: remove unused variable assignents and added bmesh submodule ↵Campbell Barton
links, doc correction reported by dfelinto.
2012-03-08== Python API docs ==Luca Bonavita
- Enhanced the -T option: - we can now choose among custom themes (now 'blender-org' and later 'naiad') and Sphinx internal themes (use -h option to see which ones) - choosing a custom theme will copy the theme dir to the output dir - Added two new command line options: -N: Add the theme name to the html dir name For example, if we choose the theme 'haiku' with using -N will create html files in sphinx-out_haiku/ Useful to test separate themes without overwriting the smae folder each time -B: Builds the html docs running sphinx-build This is useful to avoid runing sphinx with a separate shell command - Fixed the URL in undocumented_message()
2012-03-08style cleanup: pep8 + picky editsCampbell Barton
2012-03-07== Python API docs ==Luca Bonavita
(sphinx_doc_gen.py) - file reorganization to use more functions (easier to read) - adapting to work after a recent commit that made some of the members of bpy.app.* output bytes instead of strings (see [#30154]) - a couple of new command line optionsto avoid editing the script: -T: let you choose the sphinx theme: the theme dir get copied in the destination dir -b: choose if we want the bpy module page or not Current command line arguments optional arguments: -h, --help show this help message and exit -o OUTPUT_DIR, --output OUTPUT_DIR Path of the API docs (default=<script dir>) -T SPHINX_THEME, --sphinxtheme SPHINX_THEME Sphinx theme (default='default') -f, --fullrebuild Rewrite all rst files in sphinx-in/ (default=False) -t, --testdump Dumps a small part of the API (default=False) -b, --bpy Write the rst file of the bpy module (default=False) (rst/info_best_practice.rst) - fixed a typo
2012-03-05== Python API docs ==Luca Bonavita
Adding two new command line options (-f = full rebuild, -t = testing) so that we don't have to edit the file each time
2012-03-03option for the Armature Actuator to change the influence of a bone constraint.Dalai Felinto
Also adds DampedTrackTo to the list of supported constraints in the BGE Test file: http://www.pasteall.org/blend/11715 Patch developed as part of a project to NF-UBC Nereus Program. Development time 'sponsored' by the project. www.nereusprogram.org