added the flag group_exclusive to material

added restrictDraw/Select/Render to objects in python
updated group and scene docs for last commit
made 3ds import use new scn.objects rather then Object.New() - (removed import as instance for now)
fixes off import error from this report http://blenderartists.org/forum/showthread.php?t=84182
This commit is contained in:
2006-12-11 08:57:39 +00:00
parent b42d1fe544
commit 9c3cacd283
8 changed files with 97 additions and 38 deletions

View File

@@ -250,6 +250,12 @@ class Object:
this object's ID Properties. Note that dict access is available for groups on the parent
L{IDProperty<IDProperty>} object, but for everything else you need to get the L{IDGroup<IDGroup>}
object from the L{IDProperty<IDProperty>}'s data member.
@ivar restrictDisplay: Dont display this object in the 3d view, disabled by default, use the outliner to toggle.
@type restrictDisplay: bool
@ivar restrictSelect: Dont select this object in the 3d view, disabled by default, use the outliner to toggle.
@type restrictSelect: bool
@ivar restrictRender: Dont render this object, disabled by default, use the outliner to toggle.
@type restrictRender: bool
@ivar LocX: The X location coordinate of the object.
@type LocX: float
@ivar LocY: The Y location coordinate of the object.