diff options
author | wombatstampede <donning@informenta.de> | 2019-02-07 16:12:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-07 16:12:38 +0100 |
commit | d18b89707cfc3b02f1730b809980fc63cce891bc (patch) | |
tree | 961feccb4aaa80ba3345528dc648019e742e23d4 | |
parent | 3736a65f24d5e2d015f951fd8b93d9f0514f4d6a (diff) |
Update CPUParticles.xml
It took me some hours of trying and wondering and one question with a very helpful answer in the facebook group to figure out that the color_ramp gradient actually modifies the vertex color of the particle mesh (but NOT the albedo). After knowing this enabling vertex_color_use_as_albedo in the SpatialMaterial led to success.
I hope adding this little hint:
"Each particle's vertex color will vary along this [GradientTexture]."
Might help other people which stumble upon this...
-rw-r--r-- | doc/classes/CPUParticles.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/CPUParticles.xml b/doc/classes/CPUParticles.xml index 2073ca0664..6db2acac43 100644 --- a/doc/classes/CPUParticles.xml +++ b/doc/classes/CPUParticles.xml @@ -54,6 +54,7 @@ <member name="color" type="Color" setter="set_color" getter="get_color"> </member> <member name="color_ramp" type="Gradient" setter="set_color_ramp" getter="get_color_ramp"> + Each particle's vertex color will vary along this [GradientTexture]. </member> <member name="damping" type="float" setter="set_param" getter="get_param"> </member> |