We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0537a08 commit aa8ac5fCopy full SHA for aa8ac5f
ogsr_engine/xr_3da/Rain.h
@@ -5,8 +5,8 @@
5
6
#include "../xrcdb/xr_collide_defs.h"
7
8
-constexpr float max_desired_items = 3500.f; // 2500.f
9
-constexpr float min_desired_items = max_desired_items / 10.f;
+inline const float max_desired_items = std::thread::hardware_concurrency() < 3u ? 1500.f : 2500.f;
+inline const float min_desired_items = max_desired_items / 10.f;
10
11
constexpr float source_radius = 15.f; // 12.5f;
12
constexpr float source_offset = 40.f;
0 commit comments