home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCNET 2006 October - Disc 2
/
PCNET_CD_2006_10_2.iso
/
apps
/
k3d-all-in-one-setup-0.5.14.0.exe
/
k3d-setup-0.5.14.0.exe
/
share
/
scripts
/
describe_plugins.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-01-24
|
362 b
|
23 lines
#python
import k3d
import sys
factories = k3d.plugins()
print "\nApplication Plugins:"
for factory in factories :
if factory.is_application_plugin :
print "\t" + factory.name
print "\nDocument Plugins:"
for factory in factories :
if factory.is_document_plugin :
print "\t" + factory.name
sys.stdout.flush()
k3d.ui.message("Output sent to console")