diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-03 11:38:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 11:38:23 +0200 |
commit | 2c0c76c415f1b8b7d46f63d12b12ef56c8c85f4d (patch) | |
tree | ba1ef952c929653b42755313baa173865e13f7fb /scene/2d/cpu_particles_2d.cpp | |
parent | 39a794b1d53615673222be59b221c3a01af5ca18 (diff) | |
parent | 84076513b110b05e54b468513fadaf69b9839f59 (diff) |
Merge pull request #61851 from Calinou/particles-default-global-coordinates
Diffstat (limited to 'scene/2d/cpu_particles_2d.cpp')
-rw-r--r-- | scene/2d/cpu_particles_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/cpu_particles_2d.cpp b/scene/2d/cpu_particles_2d.cpp index 4155d0797f..26204a3b1a 100644 --- a/scene/2d/cpu_particles_2d.cpp +++ b/scene/2d/cpu_particles_2d.cpp @@ -1470,7 +1470,7 @@ CPUParticles2D::CPUParticles2D() { set_emitting(true); set_amount(8); - set_use_local_coordinates(true); + set_use_local_coordinates(false); set_param_min(PARAM_INITIAL_LINEAR_VELOCITY, 0); set_param_min(PARAM_ANGULAR_VELOCITY, 0); |