CharacterJointEffect

from panda3d.core import CharacterJointEffect
class CharacterJointEffect

Bases:

Bases: RenderEffect

This effect will be added automatically to a node by CharacterJoint.addNetTransform() and CharacterJoint.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

Inheritance diagram of CharacterJointEffect

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 the CharacterJointEffect, it will implicitly call character->update() first.