- Ben Omari sent an update version of his DirectX8.py, Jean-Michel Soler updated his disp_paint.py and Campbell Barton contributed a new one: sel_same.py (for now it's in the UV menu).  Thanks all, great scripts;
- small updates in some other scripts.

BPython:
- Finished wrapping radiosity functions for the Radio submodule;
- doc updates.
This commit is contained in:
2004-07-27 03:13:45 +00:00
parent d0da285547
commit 7b943f2a6d
14 changed files with 2116 additions and 683 deletions

View File

@@ -151,7 +151,7 @@ Command line mode:
into an external Python interpreter. But with "OnLoad" script links, the
"-b" background mode and additions like the "-P" command line switch,
L{Blender.Save}, L{Blender.Load}, L{Blender.Quit} and the L{Library} module,
it's possible to control Blender from outside via some automated process
for many tasks it's possible to control Blender via some automated process
using scripts.
Demo mode:
@@ -178,10 +178,10 @@ A note to newbie script writers:
--------------------------------
Interpreted languages are known to be much slower than compiled code, but for
many applications the difference is negligible or acceptable. Also, with well
thought optimizations, it can be I{considerably} reduced in many cases. Try
some of the best bpython scripts to get an idea of what can be done, it may
surprise you.
many applications the difference is negligible or acceptable. Also, with
profiling to identify slow areas and well thought optimizations, the speed
can be I{considerably} improved in many cases. Try some of the best bpython
scripts to get an idea of what can be done, you may be surprised.
@author: The Blender Python Team
@requires: Blender 2.34 or newer.
@@ -193,6 +193,5 @@ A note to newbie script writers:
@see: U{www.python.org<http://www.python.org>}
@see: U{www.python.org/doc<http://www.python.org/doc>}
@note: this documentation was generated by epydoc, which can output html and
pdf (requires a working LaTeX environment) versions of this text.
pdf. For pdf it requires a working LaTeX environment.
"""