NodePath
from panda3d.core import NodePath
- class NodePath
Bases:
NodePath is the fundamental system for disambiguating instances, and also provides a higher-level interface for manipulating the scene graph.
A NodePath is a list of connected nodes from the root of the graph to any sub-node. Each NodePath therefore uniquely describes one instance of a node.
NodePaths themselves are lightweight objects that may easily be copied and passed by value. Their data is stored as a series of NodePathComponents that are stored on the nodes. Holding a NodePath will keep a reference count to all the nodes in the path. However, if any node in the path is removed or reparented (perhaps through a different NodePath), the NodePath will automatically be updated to reflect the changes.
Inheritance diagram
-
enum ErrorType
This enumeration is returned by
getErrorType()
for an emptyNodePath
to report the reason it’s empty.-
enumerator ET_ok = 0
i.e. not empty, or never assigned to anything.
-
enumerator ET_not_found = 1
returned from a failed find() or similar function.
-
enumerator ET_removed = 2
remove_node() was previously called on this NodePath.
-
enumerator ET_fail = 3
general failure return from some function.
-
enumerator ET_ok = 0
- __eq__(other: WeakNodePath) bool
- __init__(copy: NodePath)
- __init__(parent: NodePath, child_node: PandaNode, current_thread: Thread)
Constructs a
NodePath
with the indicated parentNodePath
and child node; the child node must be a stashed or unstashed child of the parent.
- __init__(node: PandaNode, current_thread: Thread)
This constructs a
NodePath
for the indicated node. If the node does not have any parents, this creates a singletonNodePath
; otherwise, it automatically finds the path from the node to the root. If the node has multiple paths to the root, one path is chosen arbitrarily and a warning message is printed (but see alsoNodePath.anyPath()
, below).
- __init__(top_node_name: str, current_thread: Thread)
This constructs a new
NodePath
with a single node. An ordinary, unattachedPandaNode
is created with the indicated name.
- __lt__(other: WeakNodePath) bool
- __ne__(other: WeakNodePath) bool
- addHash(hash: int) int
Adds the
NodePath
into the running hash. This is intended to be used by lower-level code that computes a hash for eachNodePath
. It modifies the hash value passed in by a unique adjustment for eachNodePath
, and returns the modified hash.This is similar to the unique integer returned by
getKey()
, but it is not guaranteed to remain unique beyond the lifetime of this particularNodePath
. Once thisNodePath
destructs, a differentNodePath
may be created which shares the same hash value.
- adjustAllPriorities(adjustment: int)
Adds the indicated adjustment amount (which may be negative) to the priority for all transitions on the referenced node, and for all nodes in the subgraph below. This can be used to force these nodes not to be overridden by a high-level state change above. If the priority would drop below zero, it is set to zero.
- property ancestors Sequence[NodePath]
Returns the nth ancestor of the path, where 0 is the
NodePath
itself andgetNumNodes()
- 1 isgetTop()
. This requires iterating through the path.Also see
getNode()
, which returns the same thing as aPandaNode
pointer, not aNodePath
.
- static anyPath(node: PandaNode, current_thread: Thread) NodePath
Returns a new
NodePath
that represents any arbitrary path from the root to the indicated node. This is the same thing that would be returned by NodePath(node), except that no warning is issued if the path is ambiguous.
- applyTextureColors()
Removes textures from Geoms at this node and below by applying the texture colors to the vertices. This is primarily useful to simplify a low-LOD model. The texture colors are replaced by flat colors that approximate the original textures.
Only the bottommost texture on each Geom is used (if there is more than one), and it is applied as if it were M_modulate, and WM_repeat, regardless of its actual settings. If the texture has a simple_ram_image, this may be used if the main image isn’t resident.
After this call, there will be no texturing specified at this level and below. Of course, there might still be texturing inherited from above.
- attachNewNode(node: PandaNode, sort: int, current_thread: Thread) NodePath
Attaches a new node, with or without existing parents, to the scene graph below the referenced node of this
NodePath
. This is the preferred way to add nodes to the graph.If the node was already a child of the parent, this returns a
NodePath
to the existing child.This does not automatically extend the current
NodePath
to reflect the attachment; however, aNodePath
that does reflect this extension is returned.
- attachNewNode(name: str, sort: int, current_thread: Thread) NodePath
Creates an ordinary
PandaNode
and attaches it below the currentNodePath
, returning a newNodePath
that references it.
- calcTightBounds(min_point: LPoint3, max_point: LPoint3, other: NodePath, current_thread: Thread) bool
Calculates the minimum and maximum vertices of all Geoms at this NodePath’s bottom node and below. This is a tight bounding box; it will generally be tighter than the bounding volume returned by
getBounds()
(but it is more expensive to compute).The bounding box is computed relative to the parent node’s coordinate system by default. You can optionally specify a different
NodePath
to compute the bounds relative to. Note that the box is always axis-aligned against the given NodePath’s coordinate system, so you might get a differently sized box depending on which node you pass.The return value is true if any points are within the bounding volume, or false if none are.
- property children NodePathCollection
Returns the set of all child nodes of the referenced node.
- clearAntialias()
Completely removes any antialias setting that may have been set on this node via
setAntialias()
.
- clearAttrib(type: TypeHandle)
Removes the render attribute of the given type from this node. This node, and the subgraph below, will now inherit the indicated render attribute from the nodes above this one.
- clearAudioVolume()
Completely removes any audio volume from the referenced node. This is preferable to simply setting the audio volume to identity, as it also removes the overhead associated with having an audio volume at all.
- clearBillboard()
Removes any billboard effect from the node.
- clearBin()
Completely removes any bin adjustment that may have been set via
setBin()
from this particular node.
- clearClipPlane()
Completely removes any clip planes that may have been set via
setClipPlane()
orsetClipPlaneOff()
from this particular node.
- clearClipPlane(clip_plane: NodePath)
Removes any reference to the indicated clipping plane from the
NodePath
.
- clearColor()
Completely removes any color adjustment from the node. This allows the natural color of the geometry, or whatever color transitions might be otherwise affecting the geometry, to show instead.
- clearColorScale()
Completely removes any color scale from the referenced node. This is preferable to simply setting the color scale to identity, as it also removes the overhead associated with having a color scale at all.
- clearCompass()
Removes any compass effect from the node.
- clearDepthOffset()
Completely removes any depth-offset adjustment that may have been set on this node via
setDepthOffset()
.
- clearDepthTest()
Completely removes any depth-test adjustment that may have been set on this node via
setDepthTest()
.
- clearDepthWrite()
Completely removes any depth-write adjustment that may have been set on this node via
setDepthWrite()
.
- clearEffect(type: TypeHandle)
Removes the render effect of the given type from this node.
- clearEffects()
Resets this node to have no render effects.
- clearFog()
Completely removes any fog adjustment that may have been set via
setFog()
orsetFogOff()
from this particular node. This allows whatever fogs might be otherwise affecting the geometry to show instead.
- clearLight()
Completely removes any lighting operations that may have been set via
setLight()
orsetLightOff()
from this particular node.
- clearLight(light: NodePath)
Removes any reference to the indicated Light or
PolylightNode
from theNodePath
.
- clearLogicOp()
Completely removes any logical operation that may have been set on this node via
setLogicOp()
. The geometry at this level and below will subsequently be rendered using standard color blending.New in version 1.10.0.
- clearMat()
Completely removes any transform from the referenced node.
- clearMaterial()
Completely removes any material adjustment that may have been set via
setMaterial()
from this particular node.
- clearModelNodes() int
Recursively walks through the scene graph at this level and below, looking for
ModelNodes
, and calls model_node->set_preserve_transform(PT_drop_node) on each one. This allows a subsequent call toflattenStrong()
to eliminate all of theModelNodes
.Returns the number of
ModelNodes
found.
- clearOccluder()
Completely removes any occluders that may have been set via
setOccluder()
from this particular node.
- clearOccluder(occluder: NodePath)
Removes any reference to the indicated occluder from the
NodePath
.
- clearProjectTexture(stage: TextureStage)
Undoes the effect of
projectTexture()
.
- clearRenderMode()
Completely removes any render mode adjustment that may have been set on this node via
setRenderModeWireframe()
orsetRenderModeFilled()
.
- clearScissor()
Removes the scissor region that was defined at this node level by a previous call to
setScissor()
.
- clearShader()
- clearShaderInput(id: InternalName)
- clearTag(key: str)
Removes the value defined for this key on this particular node. After a call to
clearTag()
,hasTag()
will return false for the indicated key.
- clearTexGen()
Removes the texture coordinate generation mode from all texture stages on this node.
- clearTexGen(stage: TextureStage)
Disables automatic texture coordinate generation for the indicated texture stage.
- clearTexProjector()
Removes the
TexProjectorEffect
for all stages from this node.
- clearTexProjector(stage: TextureStage)
Removes the
TexProjectorEffect
for the indicated stage from this node.
- clearTexTransform()
Removes all texture matrices from the current node.
- clearTexTransform(stage: TextureStage)
Removes the texture matrix on the current node for the given stage.
- clearTexture()
Completely removes any texture adjustment that may have been set via
setTexture()
orsetTextureOff()
from this particular node. This allows whatever textures might be otherwise affecting the geometry to show instead.
- clearTexture(stage: TextureStage)
Removes any reference to the indicated texture stage from the
NodePath
.
- clearTransform(other: NodePath, current_thread: Thread)
Sets the transform object on this node to identity, relative to the other node. This effectively places this node at the same position as the other node.
- clearTransform(current_thread: Thread)
Sets the transform object on this node to identity.
- clearTransparency()
Completely removes any transparency adjustment that may have been set on this node via
setTransparency()
. The geometry at this level and below will subsequently be rendered either transparent or not, to whatever other nodes may have hadsetTransparency()
on them.
- clearTwoSided()
Completely removes any two-sided adjustment that may have been set on this node via
setTwoSided()
. The geometry at this level and below will subsequently be rendered either two-sided or one-sided, according to whatever other nodes may have hadsetTwoSided()
on it, or according to the initial state otherwise.
- compareTo(other: NodePath) int
Returns a number less than zero if this
NodePath
sorts before the other one, greater than zero if it sorts after, or zero if they are equivalent.Two
NodePaths
are considered equivalent if they consist of exactly the same list of nodes in the same order. Otherwise, they are different; differentNodePaths
will be ranked in a consistent but undefined ordering; the ordering is useful only for placing theNodePaths
in a sorted container like an STL set.
- compareTo(other: WeakNodePath) int
Returns a number less than zero if this
NodePath
sorts before the other one, greater than zero if it sorts after, or zero if they are equivalent.Two
NodePaths
are considered equivalent if they consist of exactly the same list of nodes in the same order. Otherwise, they are different; differentNodePaths
will be ranked in a consistent but undefined ordering; the ordering is useful only for placing theNodePaths
in a sorted container like an STL set.
- composeColorScale(scale: LVecBase4, priority: int)
multiplies the color scale component of the transform, with previous color scale leaving translation and rotation untouched.
- composeColorScale(sx: float, sy: float, sz: float, sa: float, priority: int)
Sets the color scale component of the transform
- copyTo(other: NodePath, sort: int, current_thread: Thread) NodePath
Functions like
instanceTo()
, except a deep copy is made of the referenced node and all of its descendents, which is then parented to the indicated node. ANodePath
to the newly created copy is returned.
- static decodeFromBamStream(data: bytes, reader: BamReader) NodePath
Reads the string created by a previous call to
encodeToBamStream()
, and extracts and returns theNodePath
on that string. Returns NULL on error.
- detachNode(current_thread: Thread)
Disconnects the referenced node from its parent, but does not immediately delete it. The
NodePath
retains a pointer to the node, and becomes a singletonNodePath
.This should be called to detach a node from the scene graph, with the option of reattaching it later to the same parent or to a different parent.
In practice, the only difference between
removeNode()
anddetachNode()
is thatremoveNode()
also resets theNodePath
to empty, which will cause the node to be deleted immediately if there are no other references. On the other hand,detachNode()
leaves theNodePath
referencing the node, which will keep at least one reference to the node for as long as theNodePath
exists.
- doBillboardAxis(camera: NodePath, offset: float)
Performs a billboard-type rotate to the indicated camera node, one time only, and leaves the object rotated. This is similar in principle to
headsUp()
.
- doBillboardPointEye(camera: NodePath, offset: float)
Performs a billboard-type rotate to the indicated camera node, one time only, and leaves the object rotated. This is similar in principle to
lookAt()
, although the point_eye billboard effect cannot be achieved using the ordinarylookAt()
call.
- doBillboardPointWorld(camera: NodePath, offset: float)
Performs a billboard-type rotate to the indicated camera node, one time only, and leaves the object rotated. This is similar in principle to
lookAt()
.
- encodeToBamStream() bytes
Converts the
NodePath
object into a single stream of data using aBamWriter
, and returns that data as a string string. Returns empty string on failure. This is similar towriteBamStream()
.This method is used by
__reduce__()
to handle streaming ofNodePaths
to a pickle file.
- encodeToBamStream(data: bytes, writer: BamWriter) bool
Converts the
NodePath
object into a single stream of data using aBamWriter
, and stores that data in the indicated string. Returns true on success, false on failure.If the
BamWriter
is NULL, this behaves the same way asNodePath.writeBamStream()
andPandaNode.encodeToBamStream()
, in the sense that it only writes this node and all nodes below it.However, if the
BamWriter
is not NULL, it behaves very differently. In this case, it encodes the entire graph of all nodes connected to theNodePath
, including all parent nodes and siblings. This is necessary for correct streaming of relatedNodePaths
and restoration of instances, etc., but it does mean you must detach() a node before writing it if you want to limit the nodes that get written.This method is used by
__reduce__()
to handle streaming ofNodePaths
to a pickle file. TheBamWriter
case is used by the direct.stdpy.pickle module, while the saner, non-BamWriter case is used when the standard pickle module calls this function.
- property error_type ErrorType
If
isEmpty()
is true, this returns a code that represents the reason why theNodePath
is empty.
- find(path: str) NodePath
Searches for a node below the referenced node that matches the indicated string. Returns the shortest match found, if any, or an empty
NodePath
if no match can be found.The referenced node itself is not considered in the search.
- findAllMatches(path: str) NodePathCollection
Returns the complete set of all
NodePaths
that begin with thisNodePath
and can be extended by path. The shortest paths will be listed first.The referenced node itself is not considered in the search.
- findAllMaterials() MaterialCollection
Returns a list of a materials applied to geometry at this node and below.
- findAllMaterials(name: str) MaterialCollection
Returns a list of a materials applied to geometry at this node and below that match the indicated name (which may contain wildcard characters).
- findAllPathsTo(node: PandaNode) NodePathCollection
Returns the set of all
NodePaths
that extend from thisNodePath
down to the indicated node. The shortest paths will be listed first.
- findAllTexcoords() InternalNameCollection
Returns a list of all texture coordinate sets used by any geometry at this node level and below.
- findAllTexcoords(name: str) InternalNameCollection
Returns a list of all texture coordinate sets used by any geometry at this node level and below that match the indicated name (which may contain wildcard characters).
- findAllTextureStages() TextureStageCollection
Returns a list of a
TextureStages
applied to geometry at this node and below.
- findAllTextureStages(name: str) TextureStageCollection
Returns a list of a
TextureStages
applied to geometry at this node and below that match the indicated name (which may contain wildcard characters).
- findAllTextures() TextureCollection
Returns a list of a textures applied to geometry at this node and below.
- findAllTextures(stage: TextureStage) TextureCollection
Returns a list of a textures on geometry at this node and below that are assigned to the indicated texture stage.
- findAllTextures(name: str) TextureCollection
Returns a list of a textures applied to geometry at this node and below that match the indicated name (which may contain wildcard characters).
- findAllVertexColumns() InternalNameCollection
Returns a list of all vertex array columns stored on some geometry found at this node level and below.
- findAllVertexColumns(name: str) InternalNameCollection
Returns a list of all vertex array columns stored on some geometry found at this node level and below that match the indicated name (which may contain wildcard characters).
- findMaterial(name: str) Material
Returns the first material found applied to geometry at this node or below that matches the indicated name (which may contain wildcards). Returns the material if it is found, or NULL if it is not.
- findNetTag(key: str) NodePath
Returns the lowest ancestor of this node that contains a tag definition with the indicated key, if any, or an empty
NodePath
if no ancestor of this node contains this tag definition. SeesetTag()
.
- findPathTo(node: PandaNode) NodePath
Searches for the indicated node below this node and returns the shortest
NodePath
that connects them.
- findTexture(stage: TextureStage) Texture
Returns the first texture found applied to geometry at this node or below that is assigned to the indicated texture stage. Returns the texture if it is found, or NULL if it is not.
- findTexture(name: str) Texture
Returns the first texture found applied to geometry at this node or below that matches the indicated name (which may contain wildcards). Returns the texture if it is found, or NULL if it is not.
- findTextureStage(name: str) TextureStage
Returns the first
TextureStage
found applied to geometry at this node or below that matches the indicated name (which may contain wildcards). Returns theTextureStage
if it is found, or NULL if it is not.
- flattenLight() int
Lightly flattens out the hierarchy below this node by applying transforms, colors, and texture matrices from the nodes onto the vertices, but does not remove any nodes.
This can result in improved rendering performance because there will be fewer transforms in the resulting scene graph, but the number of nodes will remain the same.
In particular, any
NodePaths
that reference nodes within this hierarchy will not be damaged. However, since this operation will remove transforms from the scene graph, it may be dangerous to apply to nodes where you expect to dynamically modify the transform, or where you expect the geometry to remain in a particular local coordinate system.The return value is always 0, since
flattenLight()
does not remove any nodes.
- flattenMedium() int
A more thorough flattening than
flattenLight()
, this first applies all the transforms, colors, and texture matrices from the nodes onto the vertices, and then removes unneeded grouping nodes–nodes that have exactly one child, for instance, but have no special properties in themselves.This results in improved performance over
flattenLight()
because the number of nodes in the scene graph is reduced.The return value is the number of nodes removed.
- flattenStrong() int
The strongest possible flattening. This first applies all of the transforms to the vertices, as in
flattenMedium()
, but then it will combine sibling nodes together when possible, in addition to removing unnecessary parent-child nodes. This can result in substantially fewer nodes, but any nicely-grouped hierachical bounding volumes may be lost.It is generally a good idea to apply this kind of flattening only to nodes that will be culled largely as a single unit, like a car. Applying this to an entire scene may result in overall poorer performance because of less- effective culling.
- forceRecomputeBounds()
Forces the recomputing of all the bounding volumes at every node in the subgraph beginning at this node and below.
This should not normally need to be called, since the bounding volumes are supposed to be recomputed automatically when necessary. It may be useful when debugging, to verify that the bounding volumes have not become inadvertently stale; it may also be useful to force animated characters to update their bounding volumes (which does not presently happen automatically).
- getAncestor(index: int, current_thread: Thread) NodePath
Returns the nth ancestor of the path, where 0 is the
NodePath
itself andgetNumNodes()
- 1 isgetTop()
. This requires iterating through the path.Also see
getNode()
, which returns the same thing as aPandaNode
pointer, not aNodePath
.
- getAntialias() int
Returns the antialias setting that has been specifically set on this node via
setAntialias()
, or M_none if no setting has been made.
- getAttrib(type: TypeHandle) RenderAttrib
Returns the render attribute of the indicated type, if it is defined on the node, or NULL if it is not. This checks only what is set on this particular node level, and has nothing to do with what render attributes may be inherited from parent nodes.
- getAudioVolume() float
Returns the complete audio volume that has been applied to this node via a previous call to
setAudioVolume()
, or 1. (identity) if no volume has been applied to this particular node.
- getBinDrawOrder() int
Returns the drawing order associated with the bin that this particular node was assigned to via
setBin()
, or 0 if no bin was assigned. SeesetBin()
andhasBin()
.
- getBinName() str
Returns the name of the bin that this particular node was assigned to via
setBin()
, or the empty string if no bin was assigned. SeesetBin()
andhasBin()
.
- getBounds(current_thread: Thread) BoundingVolume
Returns a newly-allocated bounding volume containing the bottom node and all of its descendants. This is the bounding volume on the bottom arc, converted to the local coordinate space of the node.
- getChild(n: int, current_thread: Thread) NodePath
Returns a
NodePath
representing the nth child of the referenced node.
- getChildren(current_thread: Thread) NodePathCollection
Returns the set of all child nodes of the referenced node.
- static getClassType() TypeHandle
- getCollideMask() CollideMask
Returns the union of all of the into_collide_masks for nodes at this level and below. This is the same thing as node()->get_net_collide_mask().
If you want to return what the into_collide_mask of this node itself is, without regard to its children, use node()->get_into_collide_mask().
- getColor() LColor
Returns the color that has been assigned to the node, or black if no color has been assigned.
- getColorScale() LVecBase4
Returns the complete color scale vector that has been applied to this node via a previous call to
setColorScale()
and/orsetAlphaScale()
, or all 1’s (identity) if no scale has been applied to this particular node.
- getCommonAncestor(other: NodePath, current_thread: Thread) NodePath
Returns the lowest
NodePath
that both of these twoNodePaths
have in common: the first ancestor that both of them share. If the twoNodePaths
are unrelated, returnsNodePath.notFound()
.
- getDepthOffset() int
Returns the depth offset value if it has been specified using
setDepthOffset()
, or 0 if not.
- getDepthTest() bool
Returns true if depth-test rendering has been specifically set on this node via
setDepthTest()
, or false if depth-test rendering has been specifically disabled. If nothing has been specifically set, returns true. See alsohasDepthTest()
.
- getDepthWrite() bool
Returns true if depth-write rendering has been specifically set on this node via
setDepthWrite()
, or false if depth-write rendering has been specifically disabled. If nothing has been specifically set, returns true. See alsohasDepthWrite()
.
- getDistance(other: NodePath) float
Returns the straight-line distance between this referenced node’s coordinate frame’s origin, and that of the other node’s origin.
- getEffect(type: TypeHandle) RenderEffect
Returns the render effect of the indicated type, if it is defined on the node, or NULL if it is not.
- getEffects() RenderEffects
Returns the complete
RenderEffects
that will be applied to this node.
- getErrorType() ErrorType
If
isEmpty()
is true, this returns a code that represents the reason why theNodePath
is empty.
- getFog() Fog
Returns the fog that has been set on this particular node, or NULL if no fog has been set. This is not necessarily the fog that will be applied to the geometry at or below this level, as another fog at a higher or lower level may override.
- getHiddenAncestor(camera_mask: DrawMask, current_thread: Thread) NodePath
Returns the
NodePath
at or above the referenced node that is hidden to the indicated camera(s), or an emptyNodePath
if no ancestor of the referenced node is hidden (and the node should be visible).
- getHpr(other: NodePath) LVecBase3
Returns the relative orientation of the bottom node as seen from the other node.
- getInstanceCount() int
Returns the geometry instance count, or 0 if disabled. See
setInstanceCount()
.
- getKey() int
Returns an integer that is guaranteed to be the same for all
NodePaths
that represent the same node instance, and different for allNodePaths
that represent a different node instance.The same key will be returned for a particular instance as long as at least one
NodePath
exists that represents that instance; if allNodePaths
for a particular instance destruct and a new one is later created, it may have a different index. However, a given key will never be reused for a different instance (unless the app has been running long enough that we overflow the integer key value).
- getLogicOp() Operation
Returns the logical operation that has been specifically set on this node via
setLogicOp()
, or O_none if standard color blending has been specifically set, or if nothing has been specifically set. See alsohasLogicOp()
. This does not necessarily imply that the geometry will or will not be rendered with the given logical operation, as there may be other nodes that override.New in version 1.10.0.
- getMat() LMatrix4
Returns the transform matrix that has been applied to the referenced node, or the identity matrix if no matrix has been applied.
- getMat(other: NodePath) LMatrix4
Returns the matrix that describes the coordinate space of the bottom node, relative to the other path’s bottom node’s coordinate space.
- getMaterial() Material
Returns the material that has been set on this particular node, or NULL if no material has been set. This is not necessarily the material that will be applied to the geometry at or below this level, as another material at a higher or lower level may override.
See also
findMaterial()
.
- static getMaxSearchDepth() int
Returns the current setting of the search depth limit. See
setMaxSearchDepth()
.
- getNetAudioVolume() float
Returns the complete audio volume for this node taking highers nodes in the graph into account.
- getNetPrevTransform(current_thread: Thread) TransformState
Returns the net “previous” transform on this node from the root. See
setPrevTransform()
.
- getNetState(current_thread: Thread) RenderState
Returns the net state on this node from the root.
- getNetTag(key: str) str
Returns the tag value that has been defined on this node, or the nearest ancestor node, for the indicated key. If no value has been defined for the indicated key on any ancestor node, returns the empty string. See also
getTag()
.
- getNetTransform(current_thread: Thread) TransformState
Returns the net transform on this node from the root.
- getNode(index: int, current_thread: Thread) PandaNode
Returns the nth node of the path, where 0 is the referenced (bottom) node and
getNumNodes()
- 1 is the top node. This requires iterating through the path.Also see
node()
, which is a convenience function to return the same thing as get_node(0) (since the bottom node is the most important node in theNodePath
, and is the one most frequently referenced).Note that this function returns the same thing as get_ancestor(index).node().
- getParent(current_thread: Thread) NodePath
Returns the
NodePath
to the parent of the referenced node: that is, thisNodePath
, shortened by one node. The parent of a singletonNodePath
is defined to be the emptyNodePath
.
- getPos(other: NodePath) LPoint3
Returns the relative position of the referenced node as seen from the other node.
- getPosDelta() LVector3
Returns the delta vector from this node’s position in the previous frame (according to
setPrevTransform()
, typically set via the use ofsetFluidPos()
) and its position in the current frame. This is the vector used to determine collisions. Generally, if the node was last repositioned viasetPos()
, the delta will be zero; if it was adjusted viasetFluidPos()
, the delta will represent the change from the previous frame’s position.
- getPosDelta(other: NodePath) LVector3
Returns the delta vector from this node’s position in the previous frame (according to
setPrevTransform()
, typically set via the use ofsetFluidPos()
) and its position in the current frame, as seen in the indicated node’s coordinate space. This is the vector used to determine collisions. Generally, if the node was last repositioned viasetPos()
, the delta will be zero; if it was adjusted viasetFluidPos()
, the delta will represent the change from the previous frame’s position.
- getPrevTransform(other: NodePath, current_thread: Thread) TransformState
Returns the relative “previous” transform to this node from the other node; i.e. the position of this node in the previous frame, as seen by the other node in the previous frame.
- getPrevTransform(current_thread: Thread) TransformState
Returns the transform that has been set as this node’s “previous” position. See
setPrevTransform()
.
- getQuat() LQuaternion
Retrieves the rotation component of the transform.
- getQuat(other: NodePath) LQuaternion
Returns the relative orientation of the bottom node as seen from the other node.
- getRelativePoint(other: NodePath, point: LVecBase3) LPoint3
Given that the indicated point is in the coordinate system of the other node, returns the same point in this node’s coordinate system.
- getRelativeVector(other: NodePath, vec: LVecBase3) LVector3
Given that the indicated vector is in the coordinate system of the other node, returns the same vector in this node’s coordinate system.
- getRenderMode() Mode
Returns the render mode that has been specifically set on this node via
setRenderMode()
, or M_unchanged if nothing has been set.
- getRenderModePerspective() bool
Returns the flag that has been set on this node via
setRenderModePerspective()
, or false if no flag has been set.
- getRenderModeThickness() float
Returns the render mode thickness that has been specifically set on this node via
setRenderMode()
, or 1.0 if nothing has been set.
- getScale(other: NodePath) LVecBase3
Returns the relative scale of the bottom node as seen from the other node.
- getShaderInput(id: InternalName) ShaderInput
- getShear(other: NodePath) LVecBase3
Returns the relative shear of the bottom node as seen from the other node.
- getShxy(other: NodePath) float
Returns the relative shear of the referenced node as seen from the other node.
- getSort(current_thread: Thread) int
Returns the sort value of the referenced node within its parent; that is, the sort number passed on the last reparenting operation for this node. This will control the position of the node within its parent’s list of children.
- getStashedAncestor(current_thread: Thread) NodePath
Returns the
NodePath
at or above the referenced node that is stashed, or an emptyNodePath
if no ancestor of the referenced node is stashed (and the node should be visible).
- getStashedChildren(current_thread: Thread) NodePathCollection
Returns the set of all child nodes of the referenced node that have been stashed. These children are not normally visible on the node, and do not appear in the list returned by
getChildren()
.
- getState(other: NodePath, current_thread: Thread) RenderState
Returns the state changes that must be made to transition to the render state of this node from the render state of the other node.
- getState(current_thread: Thread) RenderState
Returns the complete state object set on this node.
- getSx(other: NodePath) float
Returns the relative scale of the referenced node as seen from the other node.
- getTag(key: str) str
Retrieves the user-defined value that was previously set on this node for the particular key, if any. If no value has been previously set, returns the empty string. See also
getNetTag()
.
- getTagKeys(keys: vector_string)
Fills the given vector up with the list of tags on this
PandaNode
.It is the user’s responsibility to ensure that the keys vector is empty before making this call; otherwise, the new files will be appended to it.
- getTexGen(stage: TextureStage) TexGenMode
Returns the texture coordinate generation mode for the given stage, or M_off if there is no explicit mode set for the given stage.
- getTexHpr(other: NodePath, stage: TextureStage) LVecBase3
Returns the 3-D HPR set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexHpr(stage: TextureStage) LVecBase3
Returns the 3-D HPR set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexOffset(other: NodePath, stage: TextureStage) LVecBase2
Returns the offset set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexOffset(stage: TextureStage) LVecBase2
Returns the offset set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexPos(other: NodePath, stage: TextureStage) LVecBase3
Returns the offset set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexPos(stage: TextureStage) LVecBase3
Returns the offset set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexProjectorFrom(stage: TextureStage) NodePath
Returns the “from” node associated with the
TexProjectorEffect
on the indicated stage. The relative transform between the “from” and the “to” nodes is automatically applied to the texture transform each frame.
- getTexProjectorTo(stage: TextureStage) NodePath
Returns the “to” node associated with the
TexProjectorEffect
on the indicated stage. The relative transform between the “from” and the “to” nodes is automatically applied to the texture transform each frame.
- getTexRotate(other: NodePath, stage: TextureStage) float
Returns the rotation set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexRotate(stage: TextureStage) float
Returns the rotation set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexScale(other: NodePath, stage: TextureStage) LVecBase2
Returns the scale set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexScale(stage: TextureStage) LVecBase2
Returns the scale set for the UV’s for the given stage on the current node.
This call is appropriate for ordinary 2-d texture coordinates.
- getTexScale3d(other: NodePath, stage: TextureStage) LVecBase3
Returns the scale set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexScale3d(stage: TextureStage) LVecBase3
Returns the scale set for the UVW’s for the given stage on the current node.
This call is appropriate for 3-d texture coordinates.
- getTexTransform(other: NodePath, stage: TextureStage) TransformState
Returns the texture matrix on the current node for the given stage, relative to the other node.
- getTexTransform(stage: TextureStage) TransformState
Returns the texture matrix on the current node for the given stage, or identity transform if there is no explicit transform set for the given stage.
- getTexture() Texture
Returns the base-level texture that has been set on this particular node, or NULL if no texture has been set. This is not necessarily the texture that will be applied to the geometry at or below this level, as another texture at a higher or lower level may override.
See also
findTexture()
.
- getTexture(stage: TextureStage) Texture
Returns the texture that has been set on the indicated stage for this particular node, or NULL if no texture has been set for this stage.
- getTextureSampler() SamplerState
Returns the sampler state that has been given for the base-level texture that has been set on this particular node. If no sampler state was given, this returns the texture’s default sampler settings.
It is an error to call this if there is no base-level texture applied to this particular node.
- getTextureSampler(stage: TextureStage) SamplerState
Returns the sampler state that has been given for the indicated texture stage that has been set on this particular node. If no sampler state was given, this returns the texture’s default sampler settings.
It is an error to call this if there is no texture set for this stage on this particular node.
- getTop(current_thread: Thread) NodePath
Returns a singleton
NodePath
that represents the top of the path, or emptyNodePath
if this path is empty.
- getTopNode(current_thread: Thread) PandaNode
Returns the top node of the path, or NULL if the path is empty. This requires iterating through the path.
- getTransform(other: NodePath, current_thread: Thread) TransformState
Returns the relative transform to this node from the other node; i.e. the transformation of this node as seen from the other node.
- getTransform(current_thread: Thread) TransformState
Returns the complete transform object set on this node.
- getTransparency() Mode
Returns the transparent rendering that has been specifically set on this node via
setTransparency()
, or M_none if nontransparent rendering has been specifically set, or if nothing has been specifically set. See alsohasTransparency()
. This does not necessarily imply that the geometry will or will not be rendered transparent, as there may be other nodes that override.
- getTwoSided() bool
Returns true if two-sided rendering has been specifically set on this node via
setTwoSided()
, or false if one-sided rendering has been specifically set, or if nothing has been specifically set. See alsohasTwoSided()
. This does not necessarily imply that the geometry will or will not be rendered two-sided, as there may be other nodes that override.
- hasAntialias() bool
Returns true if an antialias setting has been explicitly mode on this particular node via
setAntialias()
. If this returns true, thengetAntialias()
may be called to determine what the setting was.
- hasAttrib(type: TypeHandle) bool
Returns true if there is a render attribute of the indicated type defined on this node, or false if there is not.
- hasAudioVolume() bool
Returns true if an audio volume has been applied to the referenced node, false otherwise. It is still possible that volume at this node might have been scaled by an ancestor node.
- hasBin() bool
Returns true if the node has been assigned to the a particular rendering bin via
setBin()
, false otherwise.
- hasClipPlane(clip_plane: NodePath) bool
Returns true if the indicated clipping plane has been specifically applied to this particular node. This means that someone called
setClipPlane()
on this node with the indicated clip_plane.
- hasClipPlaneOff() bool
Returns true if all clipping planes have been specifically disabled on this particular node. This means that someone called
setClipPlaneOff()
on this node with no parameters.
- hasClipPlaneOff(clip_plane: NodePath) bool
Returns true if the indicated clipping plane has been specifically disabled on this particular node. This means that someone called
setClipPlaneOff()
on this node with the indicated clip_plane.
- hasColorScale() bool
Returns true if a color scale has been applied to the referenced node, false otherwise. It is still possible that color at this node might have been scaled by an ancestor node.
- hasDepthOffset() bool
Returns true if a depth-offset adjustment has been explicitly set on this particular node via
setDepthOffset()
. If this returns true, thengetDepthOffset()
may be called to determine which has been set.
- hasDepthTest() bool
Returns true if a depth-test adjustment has been explicitly set on this particular node via
setDepthTest()
. If this returns true, thengetDepthTest()
may be called to determine which has been set.
- hasDepthWrite() bool
Returns true if a depth-write adjustment has been explicitly set on this particular node via
setDepthWrite()
. If this returns true, thengetDepthWrite()
may be called to determine which has been set.
- hasEffect(type: TypeHandle) bool
Returns true if there is a render effect of the indicated type defined on this node, or false if there is not.
- hasFog() bool
Returns true if a fog has been applied to this particular node via
setFog()
, false otherwise. This is not the same thing as asking whether the geometry at this node will be rendered with fog, as there may be a fog in effect from a higher or lower level.
- hasFogOff() bool
Returns true if a fog has been specifically disabled on this particular node via
setFogOff()
, false otherwise. This is not the same thing as asking whether the geometry at this node will be rendered unfogged, as there may be a fog in effect from a higher or lower level.
- hasLight(light: NodePath) bool
Returns true if the indicated Light or
PolylightNode
has been specifically enabled on this particular node. This means that someone calledsetLight()
on this node with the indicated light.
- hasLightOff() bool
Returns true if all Lights have been specifically disabled on this particular node. This means that someone called
setLightOff()
on this node with no parameters.
- hasLightOff(light: NodePath) bool
Returns true if the indicated Light has been specifically disabled on this particular node. This means that someone called
setLightOff()
on this node with the indicated light.This interface does not support
PolylightNodes
, which cannot be turned off at a lower level.
- hasLogicOp() bool
Returns true if a logical operation has been explicitly set on this particular node via
setLogicOp()
. If this returns true, thengetLogicOp()
may be called to determine whether a logical operation has been explicitly disabled for this node or set to particular operation.New in version 1.10.0.
- hasMat() bool
Returns true if a non-identity transform matrix has been applied to the referenced node, false otherwise.
- hasMaterial() bool
Returns true if a material has been applied to this particular node via
setMaterial()
, false otherwise.
- hasNetTag(key: str) bool
Returns true if the indicated tag value has been defined on this node or on any ancestor node, or false otherwise. See also
hasTag()
.
- hasOccluder(occluder: NodePath) bool
Returns true if the indicated occluder has been specifically applied to this particular node. This means that someone called
setOccluder()
on this node with the indicated occluder.
- hasParent(current_thread: Thread) bool
Returns true if the referenced node has a parent; i.e. the
NodePath
chain contains at least two nodes.
- hasRenderMode() bool
Returns true if a render mode has been explicitly set on this particular node via
setRenderMode()
(orsetRenderModeWireframe()
orsetRenderModeFilled()
), false otherwise.
- hasScissor() bool
Returns true if a scissor region was defined at this node by a previous call to
setScissor()
. This does not check for scissor regions inherited from a parent class. It also does not check for the presence of a low- levelScissorAttrib
, which is different from theScissorEffect
added bysetScissor()
.
- hasTag(key: str) bool
Returns true if a value has been defined on this node for the particular key (even if that value is the empty string), or false if no value has been set. See also
hasNetTag()
.
- hasTexGen(stage: TextureStage) bool
Returns true if there is a mode for automatic texture coordinate generation on the current node for the given stage.
- hasTexProjector(stage: TextureStage) bool
Returns true if this node has a
TexProjectorEffect
for the indicated stage, false otherwise.
- hasTexTransform(stage: TextureStage) bool
Returns true if there is an explicit texture matrix on the current node for the given stage.
- hasTexcoord(texcoord_name: str) bool
Returns true if there are at least some vertices at this node and below that use the named texture coordinate set, false otherwise. Pass the empty string for the default texture coordinate set.
- hasTexture() bool
Returns true if a texture has been applied to this particular node via
setTexture()
, false otherwise. This is not the same thing as asking whether the geometry at this node will be rendered with texturing, as there may be a texture in effect from a higher or lower level.
- hasTexture(stage: TextureStage) bool
Returns true if texturing has been specifically enabled on this particular node for the indicated stage. This means that someone called
setTexture()
on this node with the indicated stage name, or the stage_name is the default stage_name, and someone calledsetTexture()
on this node.
- hasTextureOff() bool
Returns true if texturing has been specifically disabled on this particular node via
setTextureOff()
, false otherwise. This is not the same thing as asking whether the geometry at this node will be rendered untextured, as there may be a texture in effect from a higher or lower level.
- hasTextureOff(stage: TextureStage) bool
Returns true if texturing has been specifically disabled on this particular node for the indicated stage. This means that someone called
setTextureOff()
on this node with the indicated stage name, or that someone calledsetTextureOff()
on this node to remove all stages.
- hasTransparency() bool
Returns true if a transparent-rendering adjustment has been explicitly set on this particular node via
setTransparency()
. If this returns true, thengetTransparency()
may be called to determine whether transparency has been explicitly enabled or explicitly disabled for this node.
- hasTwoSided() bool
Returns true if a two-sided adjustment has been explicitly set on this particular node via
setTwoSided()
. If this returns true, thengetTwoSided()
may be called to determine which has been set.
- hasVertexColumn(name: InternalName) bool
Returns true if there are at least some vertices at this node and below that contain a reference to the indicated vertex data column name, false otherwise.
This is particularly useful for testing whether a particular model has a given texture coordinate set (but see
hasTexcoord()
).
- headsUp(point: LPoint3, up: LVector3)
Behaves like
lookAt()
, but with a strong preference to keeping the up vector oriented in the indicated “up” direction.
- headsUp(other: NodePath, point: LPoint3, up: LVector3)
Behaves like
lookAt()
, but with a strong preference to keeping the up vector oriented in the indicated “up” direction.
- headsUp(other: NodePath, x: float, y: float, z: float)
Behaves like
lookAt()
, but with a strong preference to keeping the up vector oriented in the indicated “up” direction.
- headsUp(x: float, y: float, z: float)
Behaves like
lookAt()
, but with a strong preference to keeping the up vector oriented in the indicated “up” direction.
- hide()
Makes the referenced node (and the entire subgraph below this node) invisible to all cameras. It remains part of the scene graph, its bounding volume still contributes to its parent’s bounding volume, and it will still be involved in collision tests.
To undo this, call
show()
.
- hide(camera_mask: DrawMask)
Makes the referenced node invisible just to the cameras whose camera_mask shares the indicated bits.
This will also hide any nodes below this node in the scene graph, including those nodes for which
show()
has been called, but it will not hide descendent nodes for whichshowThrough()
has been called.
- hideBounds()
Stops the rendering of the bounding volume begun with
showBounds()
.
- instanceTo(other: NodePath, sort: int, current_thread: Thread) NodePath
Adds the referenced node of the
NodePath
as a child of the referenced node of the indicated otherNodePath
. Any other parent-child relations of the node are unchanged; in particular, the node is not removed from its existing parent, if any.If the node already had an existing parent, this method will create a new instance of the node within the scene graph.
This does not change the
NodePath
itself, but does return a newNodePath
that reflects the new instance node.If the destination
NodePath
is empty, this creates a new instance which is not yet parented to any node. A new instance of this sort cannot easily be differentiated from other similar instances, but it is nevertheless a different instance and it will return a different get_id() value.If the referenced node is already a child of the indicated
NodePath
, returns that already-existing instance, unstashing it first if necessary.
- instanceUnderNode(other: NodePath, name: str, sort: int, current_thread: Thread) NodePath
Behaves like
instanceTo()
, but implicitly creates a new node to instance the geometry under, and returns aNodePath
to that new node. This allows the programmer to set a unique state and/or transform on this instance.
- isAncestorOf(other: NodePath, current_thread: Thread) bool
Returns true if the node represented by this
NodePath
is a parent or other ancestor of the otherNodePath
, or false if it is not.
- isHidden(camera_mask: DrawMask) bool
Returns true if the referenced node is hidden from the indicated camera(s) either directly, or because some ancestor is hidden.
- isSameGraph(other: NodePath, current_thread: Thread) bool
Returns true if the node represented by this
NodePath
is parented within the same graph as that of the otherNodePath
. This is essentially the same thing as asking whethergetTop()
of bothNodePaths
is the same (e.g., both “render”).
- isStashed() bool
Returns true if the referenced node is stashed either directly, or because some ancestor is stashed.
- listTags()
Lists the tags to the nout stream, one per line. See
PandaNode.listTags()
for a variant that allows you to specify the output stream.
- lookAt(point: LPoint3, up: LVector3)
Sets the hpr on this
NodePath
so that it rotates to face the indicated point in space.
- lookAt(other: NodePath, point: LPoint3, up: LVector3)
Sets the transform on this
NodePath
so that it rotates to face the indicated point in space, which is relative to the otherNodePath
.
- lookAt(other: NodePath, x: float, y: float, z: float)
Sets the hpr on this
NodePath
so that it rotates to face the indicated point in space, which is relative to the otherNodePath
.
- lookAt(x: float, y: float, z: float)
Sets the transform on this
NodePath
so that it rotates to face the indicated point in space. This will overwrite any previously existing scale on the node, although it will preserve any translation.
- ls()
Lists the hierarchy at and below the referenced node.
- property name string
Returns/Changes the name of the referenced node.
- property net_tags string
Returns the tag value that has been defined on this node, or the nearest ancestor node, for the indicated key. If no value has been defined for the indicated key on any ancestor node, returns the empty string. See also
getTag()
.
- property nodes Sequence[PandaNode]
Returns the nth node of the path, where 0 is the referenced (bottom) node and
getNumNodes()
- 1 is the top node. This requires iterating through the path.Also see
node()
, which is a convenience function to return the same thing as get_node(0) (since the bottom node is the most important node in theNodePath
, and is the one most frequently referenced).Note that this function returns the same thing as get_ancestor(index).node().
- property parent NodePath
Returns the
NodePath
to the parent of the referenced node: that is, thisNodePath
, shortened by one node. The parent of a singletonNodePath
is defined to be the emptyNodePath
.
- premungeScene(gsg: GraphicsStateGuardianBase)
Walks through the scene graph beginning at the bottom node, and internally adjusts any
GeomVertexFormats
for optimal rendering on the indicated GSG. If this step is not done prior to rendering, the formats will be optimized at render time instead, for a small cost.It is not normally necessary to do this on a model loaded directly from disk, since the loader will do this by default.
- prepareScene(gsg: GraphicsStateGuardianBase)
Walks through the scene graph beginning at the bottom node, and does whatever initialization is required to render the scene properly with the indicated GSG. It is not strictly necessary to call this, since the GSG will initialize itself when the scene is rendered, but this may take some of the overhead away from that process.
In particular, this will ensure that textures and vertex buffers within the scene are loaded into graphics memory.
- projectTexture(stage: TextureStage, tex: Texture, projector: NodePath)
A convenience function to enable projective texturing at this node level and below, using the indicated
NodePath
(which should contain aLensNode
) as the projector.
- property python_tags
- removeNode(current_thread: Thread)
Disconnects the referenced node from the scene graph. This will also delete the node if there are no other pointers to it.
Normally, this should be called only when you are really done with the node. If you want to remove a node from the scene graph but keep it around for later, you should probably use
detachNode()
instead.In practice, the only difference between
removeNode()
anddetachNode()
is thatremoveNode()
also resets theNodePath
to empty, which will cause the node to be deleted immediately if there are no other references. On the other hand,detachNode()
leaves theNodePath
referencing the node, which will keep at least one reference to the node for as long as theNodePath
exists.
- reparentTo(other: NodePath, sort: int, current_thread: Thread)
Removes the referenced node of the
NodePath
from its current parent and attaches it to the referenced node of the indicatedNodePath
.If the destination
NodePath
is empty, this is the same thing asdetachNode()
.If the referenced node is already a child of the indicated
NodePath
(via some other instance), this operation fails and leaves theNodePath
detached.
- replaceMaterial(mat: Material, new_mat: Material)
Recursively searches the scene graph for references to the given material, and replaces them with the new material.
As of Panda3D 1.10.13, new_mat may be null to remove the material.
New in version 1.10.0.
- replaceMaterial(mat: Material, new_mat: nullptr_t)
Let interrogate know this also accepts None
- replaceTexture(tex: Texture, new_tex: Texture)
Recursively searches the scene graph for references to the given texture, and replaces them with the new texture.
As of Panda3D 1.10.13, new_tex may be null to remove the texture.
New in version 1.10.4.
- replaceTexture(tex: Texture, new_tex: nullptr_t)
Let interrogate know this also accepts None
- reverseLs()
Lists the hierarchy at and above the referenced node.
- reverseLs(out: ostream, indent_level: int) int
Lists the hierarchy at and above the referenced node.
- setAllColorScale(scale: float, priority: int)
Scales all the color components of the object by the same amount, darkening the object, without (much) affecting alpha. Note that any priority specified will also apply to the alpha scale.
- setAlphaScale(scale: float, priority: int)
Sets the alpha scale component of the transform without (much) affecting the color scale. Note that any priority specified will also apply to the color scale.
- setAntialias(mode: int, priority: int)
Specifies the antialiasing type that should be applied at this node and below. See
AntialiasAttrib
.
- setAttrib(attrib: RenderAttrib, priority: int)
Adds the indicated render attribute to the scene graph on this node. This attribute will now apply to this node and everything below. If there was already an attribute of the same type, it is replaced.
- setAudioVolumeOff(priority: int)
Disables any audio volume attribute inherited from above. This is not the same thing as
clearAudioVolume()
, which undoes any previoussetAudioVolume()
operation on this node; rather, this actively disables anysetAudioVolume()
that might be inherited from a parent node.It is legal to specify a new volume on the same node with a subsequent call to
setAudioVolume()
; this new scale will apply to lower nodes.
- setBillboardAxis(camera: NodePath, offset: float)
Puts a billboard transition on the node such that it will rotate in two dimensions around the up axis, towards a specified “camera” instead of to the viewing camera.
- setBillboardAxis(offset: float)
Puts a billboard transition on the node such that it will rotate in two dimensions around the up axis.
- setBillboardPointEye(camera: NodePath, offset: float, fixed_depth: bool)
Puts a billboard transition on the node such that it will rotate in three dimensions about the origin, keeping its up vector oriented to the top of the camera, towards a specified “camera” instead of to the viewing camera.
- setBillboardPointEye(offset: float, fixed_depth: bool)
Puts a billboard transition on the node such that it will rotate in three dimensions about the origin, keeping its up vector oriented to the top of the camera.
- setBillboardPointWorld(camera: NodePath, offset: float)
Puts a billboard transition on the node such that it will rotate in three dimensions about the origin, keeping its up vector oriented to the sky, towards a specified “camera” instead of to the viewing camera.
- setBillboardPointWorld(offset: float)
Puts a billboard transition on the node such that it will rotate in three dimensions about the origin, keeping its up vector oriented to the sky.
- setBin(bin_name: str, draw_order: int, priority: int)
Assigns the geometry at this level and below to the named rendering bin. It is the user’s responsibility to ensure that such a bin already exists, either via the cull-bin Configrc variable, or by explicitly creating a GeomBin of the appropriate type at runtime.
There are two default bins created when Panda is started: “default” and “fixed”. Normally, all geometry is assigned to “default” unless specified otherwise. This bin renders opaque geometry in state-sorted order, followed by transparent geometry sorted back-to-front. If any geometry is assigned to “fixed”, this will be rendered following all the geometry in “default”, in the order specified by draw_order for each piece of geometry so assigned.
The draw_order parameter is meaningful only for GeomBinFixed type bins, e.g. “fixed”. Other kinds of bins ignore it.
- setClipPlane(clip_plane: NodePath, priority: int)
Adds the indicated clipping plane to the list of planes that apply to geometry at this node and below. The clipping plane itself, a
PlaneNode
, should be parented into the scene graph elsewhere, to represent the plane’s position in space; but untilsetClipPlane()
is called it will clip no geometry.
- setClipPlaneOff(clip_plane: NodePath, priority: int)
Sets the geometry at this level and below to render without being clipped by the indicated
PlaneNode
. This is different from not specifying thePlaneNode
; rather, this specifically contradictssetClipPlane()
at a higher node level (or, with a priority, overrides asetClipPlane()
at a lower level).
- setClipPlaneOff(priority: int)
Sets the geometry at this level and below to render using no clip_planes at all. This is different from not specifying a clip_plane; rather, this specifically contradicts
setClipPlane()
at a higher node level (or, with a priority, overrides asetClipPlane()
at a lower level).If no clip_planes are in effect on a particular piece of geometry, that geometry is rendered without being clipped (other than by the viewing frustum).
- setCollideMask(new_mask: CollideMask, bits_to_change: CollideMask, node_type: TypeHandle)
Recursively applies the indicated
CollideMask
to the into_collide_masks for all nodes at this level and below. If node_type is notTypeHandle.none()
, then only nodes matching (or inheriting from) the indicatedPandaNode
subclass are modified.The default is to change all bits, but if bits_to_change is not all bits on, then only the bits that are set in bits_to_change are modified, allowing this call to change only a subset of the bits in the subgraph.
- setColor(color: LColor, priority: int)
Applies a scene-graph color to the referenced node. This color will apply to all geometry at this level and below (that does not specify a new color or a
setColorOff()
).
- setColor(r: float, g: float, b: float, a: float, priority: int)
Applies a scene-graph color to the referenced node. This color will apply to all geometry at this level and below (that does not specify a new color or a
setColorOff()
).
- setColorOff(priority: int)
Sets the geometry at this level and below to render using the geometry color. This is normally the default, but it may be useful to use this to contradict
setColor()
at a higher node level (or, with a priority, to override asetColor()
at a lower level).
- setColorScale(scale: LVecBase4, priority: int)
Sets the color scale component of the transform, leaving translation and rotation untouched.
- setColorScale(sx: float, sy: float, sz: float, sa: float, priority: int)
Sets the color scale component of the transform
- setColorScaleOff(priority: int)
Disables any color scale attribute inherited from above. This is not the same thing as
clearColorScale()
, which undoes any previoussetColorScale()
operation on this node; rather, this actively disables anysetColorScale()
that might be inherited from a parent node. This also disablessetAlphaScale()
at the same time.It is legal to specify a new color scale on the same node with a subsequent call to
setColorScale()
orsetAlphaScale()
; this new scale will apply to lower geometry.
- setCompass(reference: NodePath)
Puts a compass effect on the node, so that it will retain a fixed rotation relative to the reference node (or render if the reference node is empty) regardless of the transforms above it.
- setDepthOffset(bias: int, priority: int)
This instructs the graphics driver to apply an offset or bias to the generated depth values for rendered polygons, before they are written to the depth buffer. This can be used to shift polygons forward slightly, to resolve depth conflicts, or self-shadowing artifacts on thin objects. The bias is always an integer number, and each integer increment represents the smallest possible increment in Z that is sufficient to completely resolve two coplanar polygons. Positive numbers are closer towards the camera.
- setDepthTest(depth_test: bool, priority: int)
Specifically sets or disables the testing of the depth buffer on this particular node. This is normally on in the 3-d scene graph and off in the 2-d scene graph; it should be on for rendering most 3-d objects properly.
- setDepthWrite(depth_write: bool, priority: int)
Specifically sets or disables the writing to the depth buffer on this particular node. This is normally on in the 3-d scene graph and off in the 2-d scene graph; it should be on for rendering most 3-d objects properly.
- setEffect(effect: RenderEffect)
Adds the indicated render effect to the scene graph on this node. If there was already an effect of the same type, it is replaced.
- setEffects(effects: RenderEffects)
Sets the complete
RenderEffects
that will be applied this node. This completely replaces whatever has been set on this node via repeated calls tosetAttrib()
.
- setFluidPos(pos: LVecBase3)
Sets the translation component, without changing the “previous” position, so that the collision system will see the node as moving fluidly from its previous position to its new position. See Also:
NodePath.setPos
- setFluidPos(other: NodePath, pos: LVecBase3)
Sets the translation component of the transform, relative to the other node.
- setFluidPos(other: NodePath, x: float, y: float, z: float)
Sets the translation component, without changing the “previous” position, so that the collision system will see the node as moving fluidly from its previous position to its new position.
- setFluidPos(x: float, y: float, z: float)
Sets the translation component, without changing the “previous” position, so that the collision system will see the node as moving fluidly from its previous position to its new position.
- setFluidX(x: float)
- setFluidY(y: float)
- setFluidZ(z: float)
- setFog(fog: Fog, priority: int)
Sets the geometry at this level and below to render using the indicated fog.
- setFogOff(priority: int)
Sets the geometry at this level and below to render using no fog. This is normally the default, but it may be useful to use this to contradict
setFog()
at a higher node level (or, with a priority, to override asetFog()
at a lower level).
- setH(h: float)
- setHpr(hpr: LVecBase3)
Sets the rotation component of the transform, leaving translation and scale untouched.
- setHpr(other: NodePath, hpr: LVecBase3)
Sets the rotation component of the transform, relative to the other node.
- setHpr(other: NodePath, h: float, p: float, r: float)
Sets the rotation component of the transform, relative to the other node.
- setHpr(h: float, p: float, r: float)
Sets the rotation component of the transform, leaving translation and scale untouched.
- setHprScale(hpr: LVecBase3, scale: LVecBase3)
Sets the rotation and scale components of the transform, leaving translation untouched.
- setHprScale(other: NodePath, hpr: LVecBase3, scale: LVecBase3)
Sets the rotation and scale components of the transform, leaving translation untouched. This, or
setPosHprScale()
, is the preferred way to update a transform when both hpr and scale are to be changed.
- setHprScale(other: NodePath, h: float, p: float, r: float, sx: float, sy: float, sz: float)
Sets the rotation and scale components of the transform, leaving translation untouched. This, or
setPosHprScale()
, is the preferred way to update a transform when both hpr and scale are to be changed.
- setHprScale(h: float, p: float, r: float, sx: float, sy: float, sz: float)
Sets the rotation and scale components of the transform, leaving translation untouched.
- setInstanceCount(instance_count: int)
Sets the geometry instance count, or 0 if geometry instancing should be disabled. Do not confuse with
instanceTo()
which only applies to animation instancing.
- setLight(light: NodePath, priority: int)
Adds the indicated Light or
PolylightNode
to the list of lights that illuminate geometry at this node and below. The light itself should be parented into the scene graph elsewhere, to represent the light’s position in space; but untilsetLight()
is called it will illuminate no geometry.
- setLightOff(light: NodePath, priority: int)
Sets the geometry at this level and below to render without using the indicated Light. This is different from not specifying the Light; rather, this specifically contradicts
setLight()
at a higher node level (or, with a priority, overrides asetLight()
at a lower level).This interface does not support
PolylightNodes
, which cannot be turned off at a lower level.
- setLightOff(priority: int)
Sets the geometry at this level and below to render using no lights at all. This is different from not specifying a light; rather, this specifically contradicts
setLight()
at a higher node level (or, with a priority, overrides asetLight()
at a lower level).If no lights are in effect on a particular piece of geometry, that geometry is rendered with lighting disabled.
- setLogicOp(op: Operation, priority: int)
Specifically sets or disables a logical operation on this particular node. If no other nodes override, this will cause geometry to be rendered without color blending but instead using the given logical operator.
New in version 1.10.0.
- setMat(other: NodePath, mat: LMatrix4)
Converts the indicated matrix from the other’s coordinate space to the local coordinate space, and applies it to the node.
- setMaterial(tex: Material, priority: int)
Sets the geometry at this level and below to render using the indicated material.
Previously, this operation made a copy of the material structure, but nowadays it assigns the pointer directly.
- setMaterialOff(priority: int)
Sets the geometry at this level and below to render using no material. This is normally the default, but it may be useful to use this to contradict
setMaterial()
at a higher node level (or, with a priority, to override asetMaterial()
at a lower level).
- static setMaxSearchDepth(max_search_depth: int)
Certain operations, such as
find()
orfindAllMatches()
, require a traversal of the scene graph to search for the target node or nodes. This traversal does not attempt to detect cycles, so an arbitrary cap is set on the depth of the traversal as a poor man’s cycle detection, in the event that a cycle has inadvertently been introduced into the scene graph.There may be other reasons you’d want to truncate a search before the bottom of the scene graph has been reached. In any event, this function sets the limit on the number of levels that a traversal will continue, and hence the maximum length of a path that may be returned by a traversal.
This is a static method, and so changing this parameter affects all of the
NodePaths
in the universe.
- setOccluder(occluder: NodePath)
Adds the indicated occluder to the list of occluders that apply to geometry at this node and below. The occluder itself, an
OccluderNode
, should be parented into the scene graph elsewhere, to represent the occluder’s position in space; but untilsetOccluder()
is called it will clip no geometry.
- setP(p: float)
- setPos(pos: LVecBase3)
Sets the translation component of the transform, leaving rotation and scale untouched. This also resets the node’s “previous” position, so that the collision system will see the node as having suddenly appeared in the new position, without passing any points in between. See Also:
NodePath.setFluidPos
- setPos(other: NodePath, pos: LVecBase3)
Sets the translation component of the transform, relative to the other node.
- setPos(other: NodePath, x: float, y: float, z: float)
Sets the translation component of the transform, relative to the other node.
- setPos(x: float, y: float, z: float)
Sets the translation component of the transform, leaving rotation and scale untouched. This also resets the node’s “previous” position, so that the collision system will see the node as having suddenly appeared in the new position, without passing any points in between.
- setPosHpr(pos: LVecBase3, hpr: LVecBase3)
Sets the translation and rotation component of the transform, leaving scale untouched.
- setPosHpr(other: NodePath, pos: LVecBase3, hpr: LVecBase3)
Sets the translation and rotation component of the transform, relative to the other node.
- setPosHpr(other: NodePath, x: float, y: float, z: float, h: float, p: float, r: float)
Sets the translation and rotation component of the transform, relative to the other node.
- setPosHpr(x: float, y: float, z: float, h: float, p: float, r: float)
Sets the translation and rotation component of the transform, leaving scale untouched.
- setPosHprScale(pos: LVecBase3, hpr: LVecBase3, scale: LVecBase3)
Replaces the translation, rotation, and scale components, implicitly setting shear to 0.
- setPosHprScale(other: NodePath, pos: LVecBase3, hpr: LVecBase3, scale: LVecBase3)
Completely replaces the transform with new translation, rotation, and scale components, relative to the other node, implicitly setting shear to 0.
- setPosHprScale(other: NodePath, x: float, y: float, z: float, h: float, p: float, r: float, sx: float, sy: float, sz: float)
Completely replaces the transform with new translation, rotation, and scale components, relative to the other node.
- setPosHprScale(x: float, y: float, z: float, h: float, p: float, r: float, sx: float, sy: float, sz: float)
Completely replaces the transform with new translation, rotation, and scale components.
- setPosHprScaleShear(pos: LVecBase3, hpr: LVecBase3, scale: LVecBase3, shear: LVecBase3)
Completely replaces the transform with new translation, rotation, scale, and shear components.
- setPosHprScaleShear(other: NodePath, pos: LVecBase3, hpr: LVecBase3, scale: LVecBase3, shear: LVecBase3)
Completely replaces the transform with new translation, rotation, scale, and shear components, relative to the other node.
- setPosQuat(pos: LVecBase3, quat: LQuaternion)
Sets the translation and rotation component of the transform, leaving scale untouched.
- setPosQuat(other: NodePath, pos: LVecBase3, quat: LQuaternion)
Sets the translation and rotation component of the transform, relative to the other node.
- setPosQuatScale(pos: LVecBase3, quat: LQuaternion, scale: LVecBase3)
Replaces the translation, rotation, and scale components, implicitly setting shear to 0.
- setPosQuatScale(other: NodePath, pos: LVecBase3, quat: LQuaternion, scale: LVecBase3)
Completely replaces the transform with new translation, rotation, and scale components, relative to the other node, implicitly setting shear to 0.
- setPosQuatScaleShear(pos: LVecBase3, quat: LQuaternion, scale: LVecBase3, shear: LVecBase3)
Completely replaces the transform with new translation, rotation, scale, and shear components.
- setPosQuatScaleShear(other: NodePath, pos: LVecBase3, quat: LQuaternion, scale: LVecBase3, shear: LVecBase3)
Completely replaces the transform with new translation, rotation, scale, and shear components, relative to the other node.
- setPrevTransform(other: NodePath, transform: TransformState, current_thread: Thread)
Sets the “previous” transform object on this node, relative to the other node. This computes a new transform object that will have the indicated value when seen from the other node.
- setPrevTransform(transform: TransformState, current_thread: Thread)
Sets the transform that represents this node’s “previous” position, one frame ago, for the purposes of detecting motion for accurate collision calculations.
- setQuat(quat: LQuaternion)
Sets the rotation component of the transform, leaving translation and scale untouched.
- setQuat(other: NodePath, quat: LQuaternion)
Sets the rotation component of the transform, relative to the other node.
- setQuatScale(quat: LQuaternion, scale: LVecBase3)
Sets the rotation and scale components of the transform, leaving translation untouched.
- setQuatScale(other: NodePath, quat: LQuaternion, scale: LVecBase3)
Sets the rotation and scale components of the transform, leaving translation untouched. This, or
setPosQuatScale()
, is the preferred way to update a transform when both quat and scale are to be changed.
- setR(r: float)
- setRenderMode(mode: Mode, thickness: float, priority: int)
Sets up the geometry at this level and below (unless overridden) to render in the specified mode and with the indicated line and/or point thickness.
- setRenderModeFilled(priority: int)
Sets up the geometry at this level and below (unless overridden) to render in filled (i.e. not wireframe) mode.
- setRenderModeFilledWireframe(wireframe_color: LColor, priority: int)
Sets up the geometry at this level and below (unless overridden) to render in filled, but overlay the wireframe on top with a fixed color. This is useful for debug visualizations.
- setRenderModePerspective(perspective: bool, priority: int)
Sets up the point geometry at this level and below to render as perspective sprites (that is, billboarded quads). The thickness, as specified with
setRenderModeThickness()
, is the width of each point in 3-D units, unless it is overridden on a per-vertex basis. This does not affect geometry other than points.If you want the quads to be individually textured, you should also set a TexGenAttrib::M_point_sprite on the node.
- setRenderModeThickness(thickness: float, priority: int)
Sets up the point geometry at this level and below to render as thick points (that is, billboarded quads). The thickness is in pixels, unless
setRenderModePerspective()
is also true, in which case it is in 3-D units.If you want the quads to be individually textured, you should also set a TexGenAttrib::M_point_sprite on the node.
- setRenderModeWireframe(priority: int)
Sets up the geometry at this level and below (unless overridden) to render in wireframe mode.
- setScale(scale: LVecBase3)
Sets the scale component of the transform, leaving translation and rotation untouched.
- setScale(other: NodePath, scale: LVecBase3)
Sets the scale component of the transform, relative to the other node.
- setScale(other: NodePath, scale: float)
Sets the scale component of the transform, relative to the other node.
- setScale(other: NodePath, sx: float, sy: float, sz: float)
Sets the scale component of the transform, relative to the other node.
- setScale(scale: float)
Sets the scale component of the transform, leaving translation and rotation untouched.
- setScissor(a: LPoint3, b: LPoint3)
Sets up a scissor region on the nodes rendered at this level and below. The two points are understood to be relative to this node. When these points are projected into screen space, they define the diagonally-opposite points that determine the scissor region.
- setScissor(a: LPoint3, b: LPoint3, c: LPoint3, d: LPoint3)
Sets up a scissor region on the nodes rendered at this level and below. The four points are understood to be relative to this node. When these points are projected into screen space, they define the bounding volume of the scissor region (the scissor region is the smallest onscreen rectangle that encloses all four points).
- setScissor(other: NodePath, a: LPoint3, b: LPoint3)
Sets up a scissor region on the nodes rendered at this level and below. The two points are understood to be relative to the indicated other node. When these points are projected into screen space, they define the diagonally-opposite points that determine the scissor region.
- setScissor(other: NodePath, a: LPoint3, b: LPoint3, c: LPoint3, d: LPoint3)
Sets up a scissor region on the nodes rendered at this level and below. The four points are understood to be relative to the indicated other node. When these points are projected into screen space, they define the bounding volume of the scissor region (the scissor region is the smallest onscreen rectangle that encloses all four points).
- setScissor(left: float, right: float, bottom: float, top: float)
Sets up a scissor region on the nodes rendered at this level and below. The four coordinates are understood to define a rectangle in screen space. These numbers are relative to the current
DisplayRegion
, where (0,0) is the lower-left corner of theDisplayRegion
, and (1,1) is the upper-right corner.
- setShaderAuto(priority: int)
- setShaderInput(param0: InternalName, param1: object, priority: int)
- setShaderInput(id: InternalName, tex: Texture, sampler: SamplerState, priority: int)
- setShaderInput(id: InternalName, tex: Texture, read: bool, write: bool, z: int, n: int, priority: int)
- setShaderInput(input: ShaderInput)
- setShear(shear: LVecBase3)
Sets the shear component of the transform, leaving translation and rotation untouched.
- setShear(other: NodePath, shear: LVecBase3)
Sets the shear component of the transform, relative to the other node.
- setShear(other: NodePath, shxy: float, shxz: float, shyz: float)
Sets the shear component of the transform, relative to the other node.
- setShear(shxy: float, shxz: float, shyz: float)
Sets the shear component of the transform, leaving translation, rotation, and scale untouched.
- setShxy(shxy: float)
- setShxz(shxz: float)
- setShyz(shyz: float)
- setState(other: NodePath, state: RenderState, current_thread: Thread)
Sets the state object on this node, relative to the other node. This computes a new state object that will have the indicated value when seen from the other node.
- setState(state: RenderState, current_thread: Thread)
Changes the complete state object on this node.
- setSx(sx: float)
Sets the x-scale component of the transform, leaving other components untouched.
- setSy(sy: float)
Sets the y-scale component of the transform, leaving other components untouched.
- setSz(sz: float)
Sets the z-scale component of the transform, leaving other components untouched.
- setTag(key: str, value: str)
Associates a user-defined value with a user-defined key which is stored on the node. This value has no meaning to Panda; but it is stored indefinitely on the node until it is requested again.
Each unique key stores a different string value. There is no effective limit on the number of different keys that may be stored or on the length of any one key’s value.
- setTexGen(stage: TextureStage, mode: TexGenMode, constant_value: LTexCoord3, priority: int)
Enables automatic texture coordinate generation for the indicated texture stage. This version of this method is useful when setting M_constant, which requires a constant texture coordinate value.
- setTexGen(stage: TextureStage, mode: TexGenMode, priority: int)
Enables automatic texture coordinate generation for the indicated texture stage.
- setTexHpr(other: NodePath, stage: TextureStage, hpr: LVecBase3)
Sets a texture matrix on the current node to apply the indicated rotation, as a 3-D HPR, to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexHpr(other: NodePath, stage: TextureStage, h: float, p: float, r: float)
Sets a texture matrix on the current node to apply the indicated rotation, as a 3-D HPR, to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexHpr(stage: TextureStage, hpr: LVecBase3)
Sets a texture matrix on the current node to apply the indicated rotation, as a 3-D HPR, to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexHpr(stage: TextureStage, h: float, p: float, r: float)
Sets a texture matrix on the current node to apply the indicated rotation, as a 3-D HPR, to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexOffset(other: NodePath, stage: TextureStage, uv: LVecBase2)
Sets a texture matrix on the current node to apply the indicated offset to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexOffset(other: NodePath, stage: TextureStage, u: float, v: float)
Sets a texture matrix on the current node to apply the indicated offset to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexOffset(stage: TextureStage, uv: LVecBase2)
Sets a texture matrix on the current node to apply the indicated offset to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexOffset(stage: TextureStage, u: float, v: float)
Sets a texture matrix on the current node to apply the indicated offset to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexPos(other: NodePath, stage: TextureStage, uvw: LVecBase3)
Sets a texture matrix on the current node to apply the indicated offset to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexPos(other: NodePath, stage: TextureStage, u: float, v: float, w: float)
Sets a texture matrix on the current node to apply the indicated offset to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexPos(stage: TextureStage, uvw: LVecBase3)
Sets a texture matrix on the current node to apply the indicated offset to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexPos(stage: TextureStage, u: float, v: float, w: float)
Sets a texture matrix on the current node to apply the indicated offset to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexProjector(stage: TextureStage, from: NodePath, to: NodePath, lens_index: int)
Establishes a
TexProjectorEffect
on this node, which can be used to establish projective texturing (but see also theNodePath.projectTexture()
convenience function), or it can be used to bind this node’s texture transform to particular node’s position in space, allowing a LerpInterval (for instance) to adjust this node’s texture coordinates.If to is a
LensNode
, then the fourth parameter, lens_index, can be provided to select a particular lens to apply. Otherwise lens_index is not used.
- setTexRotate(other: NodePath, stage: TextureStage, r: float)
Sets a texture matrix on the current node to apply the indicated rotation, clockwise in degrees, to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexRotate(stage: TextureStage, r: float)
Sets a texture matrix on the current node to apply the indicated rotation, clockwise in degrees, to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexScale(other: NodePath, stage: TextureStage, scale: LVecBase2)
Sets a texture matrix on the current node to apply the indicated scale to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexScale(other: NodePath, stage: TextureStage, scale: LVecBase3)
Sets a texture matrix on the current node to apply the indicated scale to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexScale(other: NodePath, stage: TextureStage, scale: float)
Sets a texture matrix on the current node to apply the indicated scale to UV’s for the given stage.
This call is appropriate for 2-d or 3-d texture coordinates.
- setTexScale(other: NodePath, stage: TextureStage, su: float, sv: float)
Sets a texture matrix on the current node to apply the indicated scale to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexScale(other: NodePath, stage: TextureStage, su: float, sv: float, sw: float)
Sets a texture matrix on the current node to apply the indicated scale to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexScale(stage: TextureStage, scale: LVecBase2)
Sets a texture matrix on the current node to apply the indicated scale to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexScale(stage: TextureStage, scale: LVecBase3)
Sets a texture matrix on the current node to apply the indicated scale to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexScale(stage: TextureStage, scale: float)
Sets a texture matrix on the current node to apply the indicated scale to UVW’s for the given stage.
This call is appropriate for 2-d or 3-d texture coordinates.
- setTexScale(stage: TextureStage, su: float, sv: float)
Sets a texture matrix on the current node to apply the indicated scale to UV’s for the given stage.
This call is appropriate for ordinary 2-d texture coordinates.
- setTexScale(stage: TextureStage, su: float, sv: float, sw: float)
Sets a texture matrix on the current node to apply the indicated scale to UVW’s for the given stage.
This call is appropriate for 3-d texture coordinates.
- setTexTransform(other: NodePath, stage: TextureStage, transform: TransformState)
Sets the texture matrix on the current node to the indicated transform for the given stage.
- setTexTransform(stage: TextureStage, transform: TransformState)
Sets the texture matrix on the current node to the indicated transform for the given stage.
- setTexture(tex: Texture, sampler: SamplerState, priority: int)
Adds the indicated texture to the list of textures that will be rendered on the default texture stage.
The given sampler state will override the sampling settings on the texture itself. Note that this method makes a copy of the sampler settings that you give; further changes to this object will not be reflected.
This is the convenience single-texture variant of this method; it is now superceded by
setTexture()
that accepts a stage and texture. You may use this method if you just want to adjust the default stage.
- setTexture(tex: Texture, priority: int)
Adds the indicated texture to the list of textures that will be rendered on the default texture stage.
This is the convenience single-texture variant of this method; it is now superceded by
setTexture()
that accepts a stage and texture. You may use this method if you just want to adjust the default stage.
- setTexture(stage: TextureStage, tex: Texture, sampler: SamplerState, priority: int)
Adds the indicated texture to the list of textures that will be rendered on the indicated multitexture stage. If there are multiple texture stages specified (possibly on multiple different nodes at different levels), they will all be applied to geometry together, according to the stage specification set up in the
TextureStage
object.The given sampler state will override the sampling settings on the texture itself. Note that this method makes a copy of the sampler settings that you give; further changes to this object will not be reflected.
- setTexture(stage: TextureStage, tex: Texture, priority: int)
Adds the indicated texture to the list of textures that will be rendered on the indicated multitexture stage. If there are multiple texture stages specified (possibly on multiple different nodes at different levels), they will all be applied to geometry together, according to the stage specification set up in the
TextureStage
object.
- setTextureOff(stage: TextureStage, priority: int)
Sets the geometry at this level and below to render using no texture, on the indicated stage. This is different from not specifying a texture; rather, this specifically contradicts
setTexture()
at a higher node level (or, with a priority, overrides asetTexture()
at a lower level).
- setTextureOff(priority: int)
Sets the geometry at this level and below to render using no texture, on any stage. This is different from not specifying a texture; rather, this specifically contradicts
setTexture()
at a higher node level (or, with a priority, overrides asetTexture()
at a lower level).
- setTransform(other: NodePath, transform: TransformState, current_thread: Thread)
Sets the transform object on this node, relative to the other node. This computes a new transform object that will have the indicated value when seen from the other node.
- setTransform(transform: TransformState, current_thread: Thread)
Changes the complete transform object on this node.
- setTransparency(mode: Mode, priority: int)
Specifically sets or disables transparent rendering mode on this particular node. If no other nodes override, this will cause items with a non-1 value for alpha color to be rendered partially transparent.
- setTwoSided(two_sided: bool, priority: int)
Specifically sets or disables two-sided rendering mode on this particular node. If no other nodes override, this will cause backfacing polygons to be drawn (in two-sided mode, true) or culled (in one-sided mode, false).
- setX(x: float)
Sets the X component of the position transform, leaving other components untouched.
- setY(y: float)
Sets the Y component of the position transform, leaving other components untouched.
- setZ(z: float)
Sets the Z component of the position transform, leaving other components untouched.
- show()
Undoes the effect of a previous
hide()
on this node: makes the referenced node (and the entire subgraph below this node) visible to all cameras.This will not reveal the node if a parent node has been hidden.
- show(camera_mask: DrawMask)
Makes the referenced node visible just to the cameras whose camera_mask shares the indicated bits.
This undoes the effect of a previous
hide()
call. It will not reveal the node if a parent node has been hidden. However, seeshowThrough()
.
- showBounds()
Causes the bounding volume of the bottom node and all of its descendants (that is, the bounding volume associated with the the bottom arc) to be rendered, if possible. The rendering method is less than optimal; this is intended primarily for debugging.
- showThrough()
Makes the referenced node visible just to the cameras whose camera_mask shares the indicated bits.
Unlike
show()
, this will reveal the node even if a parent node has been hidden, thus “showing through” a parent’shide()
.
- showThrough(camera_mask: DrawMask)
Makes the referenced node visible just to the cameras whose camera_mask shares the indicated bits.
Unlike
show()
, this will reveal the node even if a parent node has been hidden via the one-parameterhide()
method, thus “showing through” a parent’shide()
. (However, it will not show through a parent’shide()
call if the no-parameter form ofhide()
was used.)
- showTightBounds()
Similar to
showBounds()
, this draws a bounding box representing the “tight” bounds of this node and all of its descendants. The bounding box is recomputed every frame by reexamining all of the vertices; this is far from efficient, but this is intended for debugging.
- property sort int
Returns the sort value of the referenced node within its parent; that is, the sort number passed on the last reparenting operation for this node. This will control the position of the node within its parent’s list of children.
- stash(sort: int, current_thread: Thread)
Removes the referenced node (and the entire subgraph below this node) from the scene graph in any normal sense. The node will no longer be visible and is not tested for collisions; furthermore, no normal scene graph traversal will visit the node. The node’s bounding volume no longer contributes to its parent’s bounding volume.
A stashed node cannot be located by a normal
find()
operation (although a special find string can still retrieve it).
- stashTo(other: NodePath, sort: int, current_thread: Thread)
Similar to
reparentTo()
, but the node is added to its new parent’s stashed list, so that the result is equivalent to callingreparentTo()
immediately followed bystash()
.
- property stashed_children NodePathCollection
Returns the set of all child nodes of the referenced node that have been stashed. These children are not normally visible on the node, and do not appear in the list returned by
getChildren()
.
- property tags
- unifyTextureStages(stage: TextureStage)
Searches through all
TextureStages
at this node and below. AnyTextureStages
that share the same name as the indicatedTextureStage
object are replaced with this object, thus ensuring that all geometry at this node and below with a particularTextureStage
name is using the sameTextureStage
object.
- unstash(sort: int, current_thread: Thread)
Undoes the effect of a previous
stash()
on this node: makes the referenced node (and the entire subgraph below this node) once again part of the scene graph.
- verifyComplete(current_thread: Thread) bool
Returns true if all of the nodes described in the
NodePath
are connected, or false otherwise.
- writeBamFile(filename: Filename) bool
Writes the contents of this node and below out to a bam file with the indicated filename. This file may then be read in again, as is, at some later point. Returns true if successful, false on some kind of error.
- writeBamStream(out: ostream) bool
Writes the contents of this node and below out to the indicated stream.
- writeBounds(out: ostream)
Writes a description of the bounding volume containing the bottom node and all of its descendants to the indicated output stream.
- wrtReparentTo(other: NodePath, sort: int, current_thread: Thread)
This functions identically to
reparentTo()
, except the transform on this node is also adjusted so that the node remains in the same place in world coordinates, even if it is reparented into a different coordinate system.
-
enum ErrorType