diff options
author | Anutrix <numaanzaheerahmed@yahoo.com> | 2022-10-08 05:05:15 +0530 |
---|---|---|
committer | Anutrix <numaanzaheerahmed@yahoo.com> | 2022-10-08 12:26:26 +0530 |
commit | a871114339a42ce62c8a126b847cd3adcb9603ba (patch) | |
tree | 61dcc296d6a0d542915e4e80bbf8cee1b8ef3e9a /core/math | |
parent | 18177828ad97286ca88cbdcfb763c967858d051b (diff) |
Randomize RandomNumberGenerator instances' default seed
Diffstat (limited to 'core/math')
-rw-r--r-- | core/math/random_number_generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/random_number_generator.h b/core/math/random_number_generator.h index 9352bae0a6..bf67154cd6 100644 --- a/core/math/random_number_generator.h +++ b/core/math/random_number_generator.h @@ -57,7 +57,7 @@ public: _FORCE_INLINE_ real_t randfn(real_t p_mean = 0.0, real_t p_deviation = 1.0) { return randbase.randfn(p_mean, p_deviation); } _FORCE_INLINE_ int randi_range(int p_from, int p_to) { return randbase.random(p_from, p_to); } - RandomNumberGenerator() {} + RandomNumberGenerator() { randbase.randomize(); } }; #endif // RANDOM_NUMBER_GENERATOR_H |