Skip to content

Commit

Permalink
Traktor: Terrain material brush strength fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
apistol78 committed Jun 10, 2024
1 parent 386d2d9 commit 123e325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/Terrain/Editor/MaterialBrush.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ uint32_t MaterialBrush::begin(float x, float y, const State& state)
{
m_radius = state.radius;
m_fallOff = state.falloff;
m_strength = abs(state.strength) / 10.0f;
m_strength = abs(state.strength) / 50.0f;
m_material = state.material;
m_inverse = (bool)(state.strength < 0.0f);
return MdMaterial;
Expand Down

0 comments on commit 123e325

Please sign in to comment.