Merge pull request #55399 from RPicster/particlesmaterial-sphere-emittershape
ParticleMaterial: Sphere emission shape emitting from the volume.
This commit is contained in:
commit
acc9b5b390
9 changed files with 57 additions and 20 deletions
|
|
@ -313,18 +313,21 @@
|
|||
All particles will be emitted from a single point.
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_SPHERE" value="1" enum="EmissionShape">
|
||||
Particles will be emitted in the volume of a sphere flattened to two dimensions.
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_SPHERE_SURFACE" value="2" enum="EmissionShape">
|
||||
Particles will be emitted on the surface of a sphere flattened to two dimensions.
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_RECTANGLE" value="2" enum="EmissionShape">
|
||||
<constant name="EMISSION_SHAPE_RECTANGLE" value="3" enum="EmissionShape">
|
||||
Particles will be emitted in the area of a rectangle.
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_POINTS" value="3" enum="EmissionShape">
|
||||
<constant name="EMISSION_SHAPE_POINTS" value="4" enum="EmissionShape">
|
||||
Particles will be emitted at a position chosen randomly among [member emission_points]. Particle color will be modulated by [member emission_colors].
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_DIRECTED_POINTS" value="4" enum="EmissionShape">
|
||||
<constant name="EMISSION_SHAPE_DIRECTED_POINTS" value="5" enum="EmissionShape">
|
||||
Particles will be emitted at a position chosen randomly among [member emission_points]. Particle velocity and rotation will be set based on [member emission_normals]. Particle color will be modulated by [member emission_colors].
|
||||
</constant>
|
||||
<constant name="EMISSION_SHAPE_MAX" value="5" enum="EmissionShape">
|
||||
<constant name="EMISSION_SHAPE_MAX" value="6" enum="EmissionShape">
|
||||
Represents the size of the [enum EmissionShape] enum.
|
||||
</constant>
|
||||
</constants>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue