2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "ParticlesMaterial" inherits= "Material" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2017-10-03 21:30:32 +02:00
Particle properties for [Particles] and [Particles2D] nodes.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2017-10-03 21:30:32 +02:00
ParticlesMaterial defines particle properties and behavior. It is used in the [code]process_material[/code] of [Particles] and [Particles2D] emitter nodes.
Some of this material's properties are applied to each particle when emitted, while others can have a [CurveTexture] applied to vary values over the lifetime of the particle.
2019-01-06 21:52:15 +01:00
When a randomness ratio is applied to a property it is used to scale that property by a random amount. The random ratio is used to interpolate between [code]1.0[/code] and a random number less than one, the result is multiplied by the property to obtain the randomized property. For example a random ratio of [code]0.4[/code] would scale the original property between [code]0.4-1.0[/code] of its original value.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2019-06-27 16:10:09 +02:00
<method name= "get_flag" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "flag" type= "int" enum= "ParticlesMaterial.Flags" >
</argument>
<description >
</description>
</method>
<method name= "get_param" qualifiers= "const" >
<return type= "float" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<description >
</description>
</method>
<method name= "get_param_randomness" qualifiers= "const" >
<return type= "float" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<description >
</description>
</method>
<method name= "get_param_texture" qualifiers= "const" >
<return type= "Texture" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<description >
</description>
</method>
<method name= "set_flag" >
<return type= "void" >
</return>
<argument index= "0" name= "flag" type= "int" enum= "ParticlesMaterial.Flags" >
</argument>
<argument index= "1" name= "enable" type= "bool" >
</argument>
<description >
</description>
</method>
<method name= "set_param" >
<return type= "void" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<argument index= "1" name= "value" type= "float" >
</argument>
<description >
</description>
</method>
<method name= "set_param_randomness" >
<return type= "void" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<argument index= "1" name= "randomness" type= "float" >
</argument>
<description >
</description>
</method>
<method name= "set_param_texture" >
<return type= "void" >
</return>
<argument index= "0" name= "param" type= "int" enum= "ParticlesMaterial.Parameter" >
</argument>
<argument index= "1" name= "texture" type= "Texture" >
</argument>
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "angle" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-01-06 21:52:15 +01:00
Initial rotation applied to each particle, in degrees.
2019-06-22 01:04:47 +02:00
Only applied when [member flag_disable_z] or [member flag_rotate_y] are [code]true[/code] or the [SpatialMaterial] being used to draw the particle is using [constant SpatialMaterial.BILLBOARD_PARTICLES].
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "angle_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's rotation will be animated along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "angle_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Rotation randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "angular_velocity" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-01-06 21:52:15 +01:00
Initial angular velocity applied to each particle. Sets the speed of rotation of the particle.
2019-06-22 01:04:47 +02:00
Only applied when [member flag_disable_z] or [member flag_rotate_y] are [code]true[/code] or the [SpatialMaterial] being used to draw the particle is using [constant SpatialMaterial.BILLBOARD_PARTICLES].
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "angular_velocity_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's angular velocity will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "angular_velocity_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Angular velocity randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "anim_offset" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2017-10-03 21:30:32 +02:00
Particle animation offset.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "anim_offset_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's animation offset will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "anim_offset_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Animation offset randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "anim_speed" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2017-10-03 21:30:32 +02:00
Particle animation speed.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "anim_speed_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's animation speed will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "anim_speed_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Animation speed randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "color" type= "Color" setter= "set_color" getter= "get_color" default= "Color( 1, 1, 1, 1 )" >
2019-01-06 21:52:15 +01:00
Each particle's initial color. If the [Particles2D]'s [code]texture[/code] is defined, it will be multiplied by this color. To have particle display color in a [SpatialMaterial] make sure to set [member SpatialMaterial.vertex_color_use_as_albedo] to [code]true[/code].
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "color_ramp" type= "Texture" setter= "set_color_ramp" getter= "get_color_ramp" >
2017-10-03 21:30:32 +02:00
Each particle's color will vary along this [GradientTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "damping" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2017-10-03 21:30:32 +02:00
The rate at which particles lose velocity.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "damping_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Damping will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "damping_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Damping randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-07-02 12:04:26 +02:00
<member name= "direction" type= "Vector3" setter= "set_direction" getter= "get_direction" default= "Vector3( 1, 0, 0 )" >
Unit vector specifying the particles' emission direction.
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_box_extents" type= "Vector3" setter= "set_emission_box_extents" getter= "get_emission_box_extents" >
2019-06-27 12:34:26 +02:00
The box's extents if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_BOX].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_color_texture" type= "Texture" setter= "set_emission_color_texture" getter= "get_emission_color_texture" >
2019-01-06 21:52:15 +01:00
Particle color will be modulated by color determined by sampling this texture at the same point as the [member emission_point_texture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_normal_texture" type= "Texture" setter= "set_emission_normal_texture" getter= "get_emission_normal_texture" >
2019-06-27 12:34:26 +02:00
Particle velocity and rotation will be set by sampling this texture at the same point as the [member emission_point_texture]. Used only in [constant EMISSION_SHAPE_DIRECTED_POINTS]. Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_point_count" type= "int" setter= "set_emission_point_count" getter= "get_emission_point_count" >
2019-06-27 12:34:26 +02:00
The number of emission points if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_POINTS] or [constant EMISSION_SHAPE_DIRECTED_POINTS].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_point_texture" type= "Texture" setter= "set_emission_point_texture" getter= "get_emission_point_texture" >
2019-06-27 12:34:26 +02:00
Particles will be emitted at positions determined by sampling this texture at a random position. Used with [constant EMISSION_SHAPE_POINTS] and [constant EMISSION_SHAPE_DIRECTED_POINTS]. Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "emission_shape" type= "int" setter= "set_emission_shape" getter= "get_emission_shape" enum= "ParticlesMaterial.EmissionShape" default= "0" >
2019-12-06 23:09:20 +01:00
Particles will be emitted inside this region. Use [enum EmissionShape] constants for values.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "emission_sphere_radius" type= "float" setter= "set_emission_sphere_radius" getter= "get_emission_sphere_radius" >
2019-06-27 12:34:26 +02:00
The sphere's radius if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_SPHERE].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "flag_align_y" type= "bool" setter= "set_flag" getter= "get_flag" default= "false" >
2019-06-22 01:04:47 +02:00
Align Y axis of particle with the direction of its velocity.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "flag_disable_z" type= "bool" setter= "set_flag" getter= "get_flag" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], particles will not move on the z axis.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "flag_rotate_y" type= "bool" setter= "set_flag" getter= "get_flag" default= "false" >
2019-06-22 01:04:47 +02:00
If [code]true[/code], particles rotate around Y axis by [member angle].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "flatness" type= "float" setter= "set_flatness" getter= "get_flatness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Amount of [member spread] in Y/Z plane. A value of [code]1[/code] restricts particles to X/Z plane.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "gravity" type= "Vector3" setter= "set_gravity" getter= "get_gravity" default= "Vector3( 0, -9.8, 0 )" >
2019-06-29 15:24:23 +02:00
Gravity applied to every particle.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "hue_variation" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2017-10-03 21:30:32 +02:00
Initial hue variation applied to each particle.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "hue_variation_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's hue will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "hue_variation_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Hue variation randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "initial_velocity" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-06-14 02:13:37 +02:00
Initial velocity magnitude for each particle. Direction comes from [member spread] and the node's orientation.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "initial_velocity_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Initial velocity randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 06:48:20 +02:00
<member name= "lifetime_randomness" type= "float" setter= "set_lifetime_randomness" getter= "get_lifetime_randomness" default= "0.0" >
Particle lifetime randomness ratio.
</member>
2019-06-29 12:38:01 +02:00
<member name= "linear_accel" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-06-14 02:13:37 +02:00
Linear acceleration applied to each particle in the direction of motion.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "linear_accel_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's linear acceleration will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "linear_accel_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Linear acceleration randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "orbit_velocity" type= "float" setter= "set_param" getter= "get_param" >
2019-01-06 21:52:15 +01:00
Orbital velocity applied to each particle. Makes the particles circle around origin. Specified in number of full rotations around origin per second.
Only available when [member flag_disable_z] is [code]true[/code].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "orbit_velocity_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's orbital velocity will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "orbit_velocity_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" >
2019-06-29 15:24:23 +02:00
Orbital velocity randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "radial_accel" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-01-06 21:52:15 +01:00
Radial acceleration applied to each particle. Makes particle accelerate away from origin.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "radial_accel_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's radial acceleration will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "radial_accel_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Radial acceleration randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "scale" type= "float" setter= "set_param" getter= "get_param" default= "1.0" >
2017-10-03 21:30:32 +02:00
Initial scale applied to each particle.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "scale_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's scale will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "scale_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Scale randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "spread" type= "float" setter= "set_spread" getter= "get_spread" default= "45.0" >
2019-06-29 15:24:23 +02:00
Each particle's initial direction range from [code]+spread[/code] to [code]-spread[/code] degrees. Applied to X/Z plane and Y/Z planes.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "tangential_accel" type= "float" setter= "set_param" getter= "get_param" default= "0.0" >
2019-01-06 21:52:15 +01:00
Tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "tangential_accel_curve" type= "Texture" setter= "set_param_texture" getter= "get_param_texture" >
2017-10-03 21:30:32 +02:00
Each particle's tangential acceleration will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "tangential_accel_random" type= "float" setter= "set_param_randomness" getter= "get_param_randomness" default= "0.0" >
2019-06-29 15:24:23 +02:00
Tangential acceleration randomness ratio.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "trail_color_modifier" type= "GradientTexture" setter= "set_trail_color_modifier" getter= "get_trail_color_modifier" >
2017-10-03 21:30:32 +02:00
Trail particles' color will vary along this [GradientTexture].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "trail_divisor" type= "int" setter= "set_trail_divisor" getter= "get_trail_divisor" default= "1" >
2017-10-03 21:30:32 +02:00
Emitter will emit [code]amount[/code] divided by [code]trail_divisor[/code] particles. The remaining particles will be used as trail(s).
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "trail_size_modifier" type= "CurveTexture" setter= "set_trail_size_modifier" getter= "get_trail_size_modifier" >
2017-10-03 21:30:32 +02:00
Trail particles' size will vary along this [CurveTexture].
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_INITIAL_LINEAR_VELOCITY" value= "0" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set initial velocity properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_ANGULAR_VELOCITY" value= "1" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set angular velocity properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_ORBIT_VELOCITY" value= "2" enum= "Parameter" >
2019-06-14 02:13:37 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set orbital velocity properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_LINEAR_ACCEL" value= "3" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set linear acceleration properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_RADIAL_ACCEL" value= "4" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set radial acceleration properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_TANGENTIAL_ACCEL" value= "5" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set tangential acceleration properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_DAMPING" value= "6" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set damping properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_ANGLE" value= "7" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set angle properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_SCALE" value= "8" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set scale properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_HUE_VARIATION" value= "9" enum= "Parameter" >
2019-06-14 02:13:37 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set hue variation properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_ANIM_SPEED" value= "10" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set animation speed properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_ANIM_OFFSET" value= "11" enum= "Parameter" >
2017-10-03 21:30:32 +02:00
Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set animation offset properties.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PARAM_MAX" value= "12" enum= "Parameter" >
2019-06-03 11:18:09 +02:00
Represents the size of the [enum Parameter] enum.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "FLAG_ALIGN_Y_TO_VELOCITY" value= "0" enum= "Flags" >
2017-10-03 21:30:32 +02:00
Use with [method set_flag] to set [member flag_align_y].
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "FLAG_ROTATE_Y" value= "1" enum= "Flags" >
2019-06-03 11:18:09 +02:00
Use with [method set_flag] to set [member flag_rotate_y].
</constant>
<constant name= "FLAG_DISABLE_Z" value= "2" enum= "Flags" >
Use with [method set_flag] to set [member flag_disable_z].
2017-09-12 22:42:36 +02:00
</constant>
2018-11-10 14:21:34 +01:00
<constant name= "FLAG_MAX" value= "3" enum= "Flags" >
2019-06-03 11:18:09 +02:00
Represents the size of the [enum Flags] enum.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "EMISSION_SHAPE_POINT" value= "0" enum= "EmissionShape" >
2017-10-03 21:30:32 +02:00
All particles will be emitted from a single point.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "EMISSION_SHAPE_SPHERE" value= "1" enum= "EmissionShape" >
2017-10-03 21:30:32 +02:00
Particles will be emitted in the volume of a sphere.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "EMISSION_SHAPE_BOX" value= "2" enum= "EmissionShape" >
2017-10-03 21:30:32 +02:00
Particles will be emitted in the volume of a box.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "EMISSION_SHAPE_POINTS" value= "3" enum= "EmissionShape" >
2019-01-06 21:52:15 +01:00
Particles will be emitted at a position determined by sampling a random point on the [member emission_point_texture]. Particle color will be modulated by [member emission_color_texture].
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "EMISSION_SHAPE_DIRECTED_POINTS" value= "4" enum= "EmissionShape" >
2019-01-06 21:52:15 +01:00
Particles will be emitted at a position determined by sampling a random point on the [member emission_point_texture]. Particle velocity and rotation will be set based on [member emission_normal_texture]. Particle color will be modulated by [member emission_color_texture].
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>