CompassEffect

from panda3d.core import CompassEffect
class CompassEffect

Bases: RenderEffect

A CompassEffect causes a node to inherit its rotation (or pos or scale, if specified) from some other reference node in the graph, or more often from the root.

In its purest form, a CompassEffect is used to keep the node’s rotation fixed relative to the top of the scene graph, despite other transforms that may exist above the node. Hence the name: the node behaves like a magnetic compass, always pointing in the same direction.

As an couple of generalizing extensions, the CompassEffect may also be set up to always orient its node according to some other reference node than the root of the scene graph. Furthermore, it may optionally adjust any of pos, rotation, or scale, instead of necessarily rotation; and it may adjust individual pos and scale components. (Rotation may not be adjusted on an individual component basis; that’s just asking for trouble.)

Be careful when using the pos and scale modes. In these modes, it’s possible for the CompassEffect to move its node far from its normal bounding volume, causing culling to fail. If this is an issue, you may need to explicitly set a large (or infinite) bounding volume on the effect node.

Inheritance diagram

Inheritance diagram of CompassEffect

PAll = 127
PPos = 7
PRot = 8
PScale = 112
PSx = 16
PSy = 32
PSz = 64
PX = 1
PY = 2
PZ = 4
P_all = 127
P_pos = 7
P_rot = 8
P_scale = 112
P_sx = 16
P_sy = 32
P_sz = 64
P_x = 1
P_y = 2
P_z = 4
__init__(*args, **kwargs)
getClassType()

C++ Interface: get_class_type()

getProperties()

C++ Interface: get_properties(CompassEffect self)

/**
  • Returns the bitmask of properties that this CompassEffect object inherits

  • from its reference node (or from the root).

*/

getReference()

C++ Interface: get_reference(CompassEffect self)

/**
  • Returns the reference node from which the CompassEffect inherits its

  • transform. If this is empty, it means the root of the scene graph.

*/

get_class_type()

C++ Interface: get_class_type()

get_properties()

C++ Interface: get_properties(CompassEffect self)

/**
  • Returns the bitmask of properties that this CompassEffect object inherits

  • from its reference node (or from the root).

*/

get_reference()

C++ Interface: get_reference(CompassEffect self)

/**
  • Returns the reference node from which the CompassEffect inherits its

  • transform. If this is empty, it means the root of the scene graph.

*/

make()

C++ Interface: make(const NodePath reference, int properties)

/**
  • Constructs a new CompassEffect object. If the reference is an empty

  • NodePath, it means the CompassEffect is relative to the root of the scene

  • graph; otherwise, it’s relative to the indicated node. The properties

  • bitmask specifies the set of properties that the compass node inherits from

  • the reference instead of from its parent.

*/