colordifferencekey: revert values to 1.0

I changed these which made them worse, using the original values with a custom "base" is a much better approach
This commit is contained in:
itsmattkc
2022-05-08 22:04:49 -07:00
parent c1ddf0b724
commit 53a3cfc9b2
2 changed files with 5 additions and 3 deletions
@@ -37,11 +37,13 @@ ColorDifferenceKeyNode::ColorDifferenceKeyNode()
AddInput(kColorInput, NodeValue::kCombo, 0);
AddInput(kHighlightsInput, NodeValue::kFloat, 100.0f);
AddInput(kHighlightsInput, NodeValue::kFloat, 1.0f);
SetInputProperty(kHighlightsInput, QStringLiteral("min"), 0.0);
SetInputProperty(kHighlightsInput, QStringLiteral("base"), 0.01);
AddInput(kShadowsInput, NodeValue::kFloat, 100.0f);
AddInput(kShadowsInput, NodeValue::kFloat, 1.0f);
SetInputProperty(kShadowsInput, QStringLiteral("min"), 0.0);
SetInputProperty(kShadowsInput, QStringLiteral("base"), 0.01);
AddInput(kMaskOnlyInput, NodeValue::kBoolean, false);