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 650b8d4 commit 8989b6eCopy full SHA for 8989b6e
1 file changed
code/utils/modular_curves.h
@@ -241,7 +241,7 @@ struct modular_curves_entry {
241
int curve_idx = -1;
242
::util::ParsedRandomFloatRange scaling_factor = ::util::UniformFloatRange(1.f);
243
::util::ParsedRandomFloatRange translation = ::util::UniformFloatRange(0.f);
244
- bool wraparound = true;
+ bool wraparound = false;
245
};
246
247
//
@@ -355,7 +355,7 @@ struct modular_curves_definition {
355
curve_entry.translation = ::util::UniformFloatRange(0.0f);
356
}
357
358
- curve_entry.wraparound = true;
+ curve_entry.wraparound = false;
359
parse_optional_bool_into("+Wraparound:", &curve_entry.wraparound);
360
361
curves[static_cast<std::underlying_type_t<output_enum>>(output_idx)].emplace_back(input_idx, curve_entry);
0 commit comments