CharacterJointEffect

class CharacterJointEffect

Bases: RenderEffect

This effect will be added automatically to a node by CharacterJoint::add_net_transform() and CharacterJoint::add_local_transform().

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

PointerTo<Character> get_character(void) const

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 TypeHandle get_class_type(void)
static ConstPointerTo<RenderEffect> make(Character *character)

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.