Merge pull request #53036 from CaptainProton42/fix-gpuparticles3d-emission-points-from-node
This commit is contained in:
commit
d395dbae26
|
@ -362,6 +362,7 @@ void GPUParticles3DEditor::_generate_emission_points() {
|
|||
|
||||
Ref<ImageTexture> tex;
|
||||
tex.instantiate();
|
||||
tex->create_from_image(image);
|
||||
|
||||
Ref<ParticlesMaterial> material = node->get_process_material();
|
||||
ERR_FAIL_COND(material.is_null());
|
||||
|
@ -390,6 +391,7 @@ void GPUParticles3DEditor::_generate_emission_points() {
|
|||
|
||||
Ref<ImageTexture> tex2;
|
||||
tex2.instantiate();
|
||||
tex2->create_from_image(image2);
|
||||
|
||||
material->set_emission_normal_texture(tex2);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue