summaryrefslogtreecommitdiff
path: root/scene/2d
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2023-04-12 11:35:25 -0700
committerYuri Sizov <yuris@humnom.net>2023-04-24 17:01:37 +0200
commit2c773e12b8122edd58a32c67febeb470434f89dd (patch)
tree7efc842615d0a020f15cbd69b608a5f050db0093 /scene/2d
parentd31002cfbee5f33c335c329d24be8d82fb04bcc5 (diff)
Use angle_rand to calculate base_angle in particles process material
(cherry picked from commit 821917ba9f30b036ef7f43664db3f09d33f59109)
Diffstat (limited to 'scene/2d')
-rw-r--r--scene/2d/cpu_particles_2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/cpu_particles_2d.cpp b/scene/2d/cpu_particles_2d.cpp
index 04c7555306..b86635b82b 100644
--- a/scene/2d/cpu_particles_2d.cpp
+++ b/scene/2d/cpu_particles_2d.cpp
@@ -722,12 +722,12 @@ void CPUParticles2D::_particles_process(double p_delta) {
tex_linear_velocity = curve_parameters[PARAM_INITIAL_LINEAR_VELOCITY]->sample(0);
}*/
- real_t tex_angle = 0.0;
+ real_t tex_angle = 1.0;
if (curve_parameters[PARAM_ANGLE].is_valid()) {
tex_angle = curve_parameters[PARAM_ANGLE]->sample(tv);
}
- real_t tex_anim_offset = 0.0;
+ real_t tex_anim_offset = 1.0;
if (curve_parameters[PARAM_ANGLE].is_valid()) {
tex_anim_offset = curve_parameters[PARAM_ANGLE]->sample(tv);
}