Mailing List
Home
Forum Home
Softimage
Carrara
trueSpace
Dir3d-l
Maya - a powerful 3D animation and visual effects software
Macromedia Flash Development
Subjects
Cameras
scaleDown command
black out solved
Aircraft Tutorial
Mathematical XYZ ?
Its done This vs That
Its done first week
recommendations for screen video captures?
3DExplorer "Oddity "
New Director
ProTeam renewals
Fuel 's new websites (X post)
Blue peter create a make toy
targeting groups question
XPost: Shockwave 3D game ( sort of )
RES: RES: RES: Fish Modeling
Emitting particles from object intersection
Fuel 's new websites (X post)
Texturing
Big Break Contest Videos
New Plugins
Models and Texture on my updated site
Error Installing Patch tS6 6
Plasma?
Looking for Inspiration
Weird EMail Q
It 's done first week ?
Cherry not cranberry
New game
Camera Animation Problem
Particle plugins?
 
Python SI Constants Modules available for Download

Python SI Constants Modules available for Download

2004-02-12       - By Rick Walia

 Back
Hi guys,

Don't know how many use python here but I put 3 modules on my site for download:
http://www.rickw3d.com/XSI/Python/Modules/

SiFilter.py
SiFamily.py
SiUserPref.py

Nothing fancy, just variables with values. You can use these if you want to take
advantage of the SiFilter or SiFamily constants:

#Import the module in your local namespace:
from SiFamily import *
oFound = oRoot.FindChildren("","",siLightPrimitiveFamily)

#If you choose not to import it locally:
import SiFamily
oFound = oRoot.FindChildren("","",SiFamily.siLightPrimitiveFamily)

If you want to see the contents of the modules from a console(Not XSI):

from pydoc import help
import SiFilter
help(SiFilter)

It'll list all the variables and values.

If I missed anything, let me know.

/R

---
Unsubscribe? Mail Majordomo@(protected) with the following text in body:
unsubscribe xsi