diff options
author | RedMser <redmser.jj2@gmail.com> | 2023-07-05 15:41:44 +0200 |
---|---|---|
committer | RedMser <redmser.jj2@gmail.com> | 2024-02-08 23:05:20 +0100 |
commit | d3852deaa450d77edb30df2bb1c77bd7bc45befc (patch) | |
tree | e25fb2b4795f3ffec816349a7080ef95f3406a24 /scene/2d/gpu_particles_2d.cpp | |
parent | bf37a9bac6ebfb09c0a374260c35ede8373ce427 (diff) | |
download | redot-engine-d3852deaa450d77edb30df2bb1c77bd7bc45befc.tar.gz |
Update Node::get_configuration_warnings signature
Diffstat (limited to 'scene/2d/gpu_particles_2d.cpp')
-rw-r--r-- | scene/2d/gpu_particles_2d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/gpu_particles_2d.cpp b/scene/2d/gpu_particles_2d.cpp index bc39513c03..d34e339448 100644 --- a/scene/2d/gpu_particles_2d.cpp +++ b/scene/2d/gpu_particles_2d.cpp @@ -327,8 +327,8 @@ float GPUParticles2D::get_interp_to_end() const { return interp_to_end_factor; } -PackedStringArray GPUParticles2D::get_configuration_warnings() const { - PackedStringArray warnings = Node2D::get_configuration_warnings(); +Array GPUParticles2D::get_configuration_warnings() const { + Array warnings = Node2D::get_configuration_warnings(); if (process_material.is_null()) { warnings.push_back(RTR("A material to process the particles is not assigned, so no behavior is imprinted.")); |