CharacterJointEffect
from panda3d.core import CharacterJointEffect
- class CharacterJointEffect
Bases:
Bases:
RenderEffect
This effect will be added automatically to a node by
CharacterJoint.addNetTransform()
andCharacterJoint.addLocalTransform()
.The effect binds the node back to the character, so that querying the relative transform of the affected node will automatically force the indicated character to be updated first.
Inheritance diagram
- getCharacter() Character
Returns the Character that will get update() called on it when this node’s relative transform is queried, or NULL if there is no such character.
- static getClassType() TypeHandle
- static make(character: Character) RenderEffect
Constructs a new
CharacterJointEffect
object that references the indicated character. When a relative get_transform() is called on the node that contains theCharacterJointEffect
, it will implicitly call character->update() first.