ShaderNodeTexPointDensity(ShaderNode)¶
base classes — bpy_struct, Node, NodeInternal, ShaderNode
-
class
bpy.types.ShaderNodeTexPointDensity(ShaderNode)¶ -
color_source¶ Data to derive color results from
PARTICLE_AGEParticle Age, Lifetime mapped as 0.0 - 1.0 intensity.PARTICLE_SPEEDParticle Speed, Particle speed (absolute magnitude of velocity) mapped as 0.0-1.0 intensity.PARTICLE_VELOCITYParticle Velocity, XYZ velocity mapped to RGB colors.
Type: enum in [‘PARTICLE_AGE’, ‘PARTICLE_SPEED’, ‘PARTICLE_VELOCITY’], default ‘PARTICLE_AGE’
-
interpolation¶ Texture interpolation
ClosestClosest, No interpolation (sample closest texel).LinearLinear, Linear interpolation.CubicCubic, Cubic interpolation (CPU only).
Type: enum in [‘Closest’, ‘Linear’, ‘Cubic’], default ‘Linear’
-
particle_system¶ Particle System to render as points
Type: ParticleSystem
-
point_source¶ Point data to use as renderable point density
PARTICLE_SYSTEMParticle System, Generate point density from a particle system.OBJECTObject Vertices, Generate point density from an object’s vertices.
Type: enum in [‘PARTICLE_SYSTEM’, ‘OBJECT’], default ‘PARTICLE_SYSTEM’
-
radius¶ Radius from the shaded sample to look for points within
Type: float in [0.001, inf], default 0.0
-
resolution¶ Resolution used by the texture holding the point density
Type: int in [1, 32768], default 0
-
space¶ Coordinate system to calculate voxels in
Type: enum in [‘OBJECT’, ‘WORLD’], default ‘OBJECT’
-
classmethod
is_registered_node_type()¶ True if a registered node type
Returns: Result Return type: boolean
-
classmethod
input_template(index)¶ Input socket template
Parameters: index (int in [0, inf]) – Index Returns: result Return type: NodeInternalSocketTemplate
-
classmethod
output_template(index)¶ Output socket template
Parameters: index (int in [0, inf]) – Index Returns: result Return type: NodeInternalSocketTemplate
-
calc_point_density(scene=None, settings='RENDER')¶ Calculate point density
Parameters: settings (enum in [‘VIEWPORT’, ‘RENDER’], (optional)) – Calculate density for rendering
VIEWPORTViewport, Canculate density using viewport settings.RENDERRender, Canculate duplis using render settings.
Returns: RGBA Values Return type: float array of 1 items in [-inf, inf]
-
Inherited Properties
Inherited Functions