SpriteParticleRenderer
from panda3d.physics import SpriteParticleRenderer
- class SpriteParticleRenderer
Bases:
Bases:
BaseParticleRenderer
Renders a particle system with high-speed nasty trick sprites.
Inheritance diagram
- __init__(copy: SpriteParticleRenderer)
copy constructor
- __init__(tex: panda3d.core.Texture)
constructor
- addFromNode(node_path: panda3d.core.NodePath, size_from_texels: bool, resize: bool)
This will allow the renderer to randomly choose from more than one texture or sequence at particle birth.
If resize is true, or if there are no textures currently on the renderer, it will force the renderer to use the size information from this node from now on. (Default is false)
- addFromNode(node_path: panda3d.core.NodePath, model: str, node: str, size_from_texels: bool, resize: bool)
This will allow the renderer to randomly choose from more than one texture or sequence at particle birth.
If the source type is important, use this one.
model and node should lead to node_path like this: node_path = loader.loadModel(model).find(node)
If resize is true, or if there are no textures currently on the renderer, it will force the renderer to use the size information from this node from now on. (Default is false)
- addTexture(tex: panda3d.core.Texture, texels_per_unit: float, resize: bool)
Adds texture to image pool, effectively creating a single frame animation that can be selected at particle birth. This should only be called after a previous call to
setTexture()
.
- getAlphaBlendMethod() ParticleRendererBlendMethod
- getAnim(n: int) SpriteAnim
- getColor() panda3d.core.LColor
- getColorInterpolationManager() ColorInterpolationManager
- getLastAnim() SpriteAnim
- getLlUv() panda3d.core.LTexCoord
Returns the UV coordinate of the lower-left corner; see
setLlUv()
.
- getLlUv(anim: int, frame: int) panda3d.core.LTexCoord
Returns the UV coordinate of the lower-left corner; see
setLlUv()
.
- getTexture() panda3d.core.Texture
- getTexture(anim: int, frame: int) panda3d.core.Texture
- getUrUv() panda3d.core.LTexCoord
Returns the UV coordinate of the lower-left corner; see
setUrUv()
.
- getUrUv(anim: int, frame: int) panda3d.core.LTexCoord
Returns the UV coordinate of the upper-right corner; see
setUrUv()
.
- setAlphaBlendMethod(bm: ParticleRendererBlendMethod)
- setColor(color: panda3d.core.LColor)
- setFromNode(node_path: panda3d.core.NodePath, size_from_texels: bool)
Sets the properties on this renderer from the geometry referenced by the indicated
NodePath
. This should be a reference to aGeomNode
or aSequenceNode
; it extracts out the texture and UV range from the node.This will remove all previously added textures and animations. It will also resize the renderer to match this new geometry.
If node_path refers to a GeomNode(or has one beneath it) the texture, its size, and UV data will be extracted from that.
If node_path references a SequenceNode(or has one beneath it) with multiple
GeomNodes
beneath it, the size data will correspond only to the firstGeomNode
found with a valid texture, while the texture and UV information will be stored for each individual node.If size_from_texels is true, the particle size is based on the number of texels in the source image; otherwise, it is based on the size of the first polygon found in the node.
model and node are the two items used to construct node_path. If the source type is important, use set_from_node(NodePath,string,string,bool) instead.
- setFromNode(node_path: panda3d.core.NodePath, model: str, node: str, size_from_texels: bool)
If the source type is important, use this one.
model and node should lead to node_path like this: node_path = loader.loadModel(model).find(node)
This will remove all previously add textures and resize the renderer to match the new geometry.
- setLlUv(ll_uv: panda3d.core.LTexCoord)
Sets the UV coordinate of the lower-left corner of all the sprites generated by this renderer. Normally this is (0, 0), but it might be set to something else to use only a portion of the texture.
- setLlUv(ll_uv: panda3d.core.LTexCoord, anim: int, frame: int)
Sets the UV coordinate of the lower-left corner of all the sprites generated by this renderer. Normally this is (0, 0), but it might be set to something else to use only a portion of the texture.
- setTexture(tex: panda3d.core.Texture, texels_per_unit: float)
Sets the renderer up to render the entire texture image. The scale of each particle is based on the size of the texture in each dimension, modified by texels_per_unit.
Used to set the size of the particles. Will clear all previously loaded textures and animations.
- setUrUv(ur_uv: panda3d.core.LTexCoord)
Sets the UV coordinate of the upper-right corner of all the sprites generated by this renderer. Normally this is (1, 1), but it might be set to something else to use only a portion of the texture.
- setUrUv(ur_uv: panda3d.core.LTexCoord, anim: int, frame: int)
Sets the UV coordinate of the upper-right corner of all the sprites generated by this renderer. Normally this is (1, 1), but it might be set to something else to use only a portion of the texture.