Scripts awards at the next Blender Conference

Hi,

This year the Suzanne award will also be given to the best script.

This is how it will be:

  • At this thread you all can tell us which are your favorite scripts until this Friday, October 15th;
  • The bpython dev team plus some Blender coders related to scripting will appoint a jury to choose up to 5 nominees among the names suggested here;
  • During the conference the participants can vote for best script among the chosen nominees.

Since this is the first year this happens, older scripts are also eligible. The only requirement is that the script is still actively developed – that it works with Blender 2.3x.

So now you can start suggesting names :).

fibre

makehuman

The only requirement is that the script is still actively developed – that it works with Blender 2.3x.

Heheh - the CVS builds say 2.34 does that count? <grin>

Makehuman, Fiber, BlenderPeople
(and Beast).

LetterRip

Makehuman
Bevel Center
L-System
Mirror
Fiber
Beast

Cheers.

Makehuman
Bevel Center

fibre, makehuman and blenderpeoples.

fibre, makehuman, blender world forge

You should post this on “Blender general” or on “news and chat”.

You should post this on “Blender general” or on “news and chat”.[/quote]
I think the idea is to try to limit it to people who uses the script. By posting in News & Chat, I think many would post the scripts they “think” is the best without even trying them.

Martin

You should post this on “Blender general” or on “news and chat”.[/quote]
I think the idea is to try to limit it to people who uses the script. By posting in News & Chat, I think many would post the scripts they “think” is the best without even trying them.

Martin[/quote]

I think that people who uses scripts are not necessarily every day on the script forum.

SPE

fiber
beast
povanim

+++

Makehuman is a script that I find very useful.
BlODEd is another one that deserves recognition, even though I haven’t used it much.

Many other scripts that I use don’t seem to be in development anymore, such as L-System, Shell Factory, and objExport_Modif228.

There is a more recent version of the shell factory (may,03 2004):

http://cobalt3d.free.fr/ressources_python/archives/shell_blendv91d.zip
and for objExport_Modif too (april, 2005) :
http://jmsoler.free.fr/util/blenderfile/py/obj_io_modif236e.py

Liste non-exhaustive :

Apply Deformation
Fix From Armature
RVK1 to RVK2
Texture Baker
UVPainter
Axis Orientation Copy
Cookie Cutter
DupliObject
Fiber
SelectQuad SelectTri
ph_BandGlue
ph_Outline
OutLine Select
Bevel Center
DisPaint
C Tools
Skin Two Vert-Loop / Loft Mult
UnWeld
Camera
Horn Extrude
Ter to Blend
FollowTerrain FollowTerrainPath
Tree
Vertex withOut Group
Beast
G Buffer Extractor
Wave Follow
DeplDirect
MegaBool
CityBlock
WireMesh
Wall
Ripples
import/export

TooHard To Choose :-?

Tough to decide on a best script. Scripts like Fiber,makehuman, dispaint, etc, provide awesome new features to Blender.

Then there are some like objExport_Modif228 and UV Faces Export which fulfill a vital need in Blender.

KlopUtils.

%<

My favourite is:

# script to call Blender from eric3 on the current active file

import os
# get current active file
currentFile = ViewManager.getActiveName()
if currentFile is not None:
        # go to the Blender directory
        blenderDir = '/opt/blender-2.34/'
        os.chdir(blenderDir)

        # change PYTHONPATH to include current directory
        pythonPath = os.environ.get('PYTHONPATH')
        if pythonPath:
                pythonPath += ":"
        else:
                pythonPath = ''
        pythonPath += os.path.dirname(currentFile)
        os.environ['PYTHONPATH'] = pythonPath

        # spawn Blender in seperate process
        os.spawnle(os.P_NOWAIT, blenderDir+'blender', blenderDir+'blender', '-w', '-P', currentFile, os.environ)
else:
        print "Error: No file selected!"

I often call it at night and during weekends through a single click on a taskbar icon. What pleases me most is that I can separate classes into packages since it takes care of the python path.

In order of usability in all day work I think “Save UV face layout” script implemented in Blender 2.34 totally saves the day :smiley:

BlenderPeople and BlODEd. Both are ambitious, unique, and useful.