c4d.modules.character.MTBodyPartParameters

class c4d.modules.character.MTBodyPartParameters

Represents the settings from a body part of a Character Definition.

Retrieved from MTCharacterBodyPart.GetParameters().

New in version S24.

Attributes

MTBodyPartParameters._identifier

Need to stay unique in hierarchy.

Type: maxon.InternedId

MTBodyPartParameters._name

Name of the Body Part.

Type: str

MTBodyPartParameters._skeletonNodes

List of skeleton objects.

Type: List[c4d.BaseList2D]

MTBodyPartParameters._controllerNodes

List of controller objects.

Type: List[c4d.BaseList2D]

MTBodyPartParameters._skeletonKeywords

Automatic skeleton extraction keywords

Type: List[str]

MTBodyPartParameters._skeletonDiscardKeywords

Automatic skeleton discard extraction keywords

Type: List[str]

MTBodyPartParameters._transferPosition

True if the position should be transferred.

Type: bool

MTBodyPartParameters._transferRotation

True if the rotation should be transferred.

Type: bool

MTBodyPartParameters._transferScale

True if the scale should be transferred.

Type: bool

MTBodyPartParameters._exposeInSolver

True if it should be exposed in the motion transfer solver.

Type: bool

MTBodyPartParameters._transferUserData

True if user data should be transferred.

Type: bool

MTBodyPartParameters._transferUserDataMode

The method used to transfer user data

Symbol ID

Description

BYID

Transfer using the ID.

BYNAME

Transfer using the Name.

BOTH

Transfer using both technique.

Type: int

Methods Signatures

MTBodyPartParameters.CopyFrom(self, src)

Copy all the data from src to the current c4d.modules.character.MTBodyPartParameters.

Inheritance

Methods Documentation

MTBodyPartParameters.CopyFrom(self, src)

Copy all the data from src to the current c4d.modules.character.MTBodyPartParameters.

Parameters

src (c4d.modules.character.MTBodyPartParameters) – The other c4d.modules.character.MTBodyPartParameters to copy.