[Bf-python] Problem

Willian Padovani Germano wgermano at ig.com.br
Wed Jun 23 10:07:48 CEST 2004


Hi Daphna,

----- Original Message -----
From: "Daphna Steinbach" <daphna at web.de>
To: <bf-python at blender.org>
Sent: Tuesday, June 22, 2004 6:54 AM
Subject: [Bf-python] Problem


(...)
> So maybe there can be a python func that saves the blender file?

I'll add a Blender.Save(blendfile) function this week, should have done it
already to go along with the other recently introduced ones.  Good luck with
your thesis : ).

Just a note: under linux, to find my way around Blender I usually keep a
terminal session open at the blender/source/blender/ dir and grep for the string
that appears in the interface.  For example, to find my way to the save
function, I'd grep for "Save" or "Ctrl W" or "SAVE OVER", for example, all of
them strings you can find while using Blender.

grep -r chosen_string *     will find all occurrences.

When searching for a function, grep -r function_name * | grep -v ";"   usually
helps further, by only returning references where ";" doesn't appear, like the
function declaration and definition.  Of course there are more professional ways
like using a program to index all functions in the sources, etc ...

--
Willian, wgermano at ig.com.br




More information about the Bf-python mailing list