added fakeUser and users to more pytypes
This commit is contained in:
@@ -161,6 +161,11 @@ class Armature:
|
||||
@type mirrorEdit: Bool
|
||||
@ivar autoIK: Adds temporary IK chains while grabbing bones
|
||||
@type autoIK: Bool
|
||||
@ivar users: The number of users of the armature. Read-only.
|
||||
@type users: int
|
||||
@ivar fakeUser: The fake user status.
|
||||
enabling this will keep it in the blend even if there are no users.
|
||||
@type fakeUser: bool
|
||||
"""
|
||||
|
||||
def __init__(name = 'myArmature'):
|
||||
|
||||
@@ -88,11 +88,18 @@ class Group:
|
||||
================
|
||||
This object gives access to Groups in Blender.
|
||||
@ivar name: The name of this Group object.
|
||||
@type name: string
|
||||
@ivar users: Number of users this group has (read only)
|
||||
@ivar layers: Layer mask for this group.
|
||||
@type users: int
|
||||
@ivar fakeUser: The fake user status.
|
||||
enabling this will keep it in the blend even if there are no users.
|
||||
@type fakeUser: bool
|
||||
@ivar layers: Layer bitmask for this group.
|
||||
@type layers: int
|
||||
@ivar objects: Objects that this group uses.
|
||||
This is a sequence with-list like access so use list(grp.objects) if you need to use a list (where grp is a group).
|
||||
The groups objects can be set by assigning a list or iterator of objects to the groups objects.
|
||||
objects.link() and objects.unlink() also work with the the objects iterator just like with lists.
|
||||
@type objects: custom object sequence
|
||||
"""
|
||||
|
||||
|
||||
@@ -131,6 +131,9 @@ class Metaball:
|
||||
@type name: string
|
||||
@ivar users: The user count (read only)
|
||||
@type users: int
|
||||
@ivar fakeUser: The fake user status.
|
||||
enabling this will keep it in the blend even if there are no users.
|
||||
@type fakeUser: bool
|
||||
@ivar elements: Element iterator of MetaElemSeq type.
|
||||
@type elements: MetaElemSeq
|
||||
@ivar wiresize: display resolution.
|
||||
|
||||
Reference in New Issue
Block a user