mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-24 01:57:18 +01:00
Fix unused return value.
This commit is contained in:
parent
091bb6391b
commit
857a0265d4
@ -97,7 +97,7 @@ Color MMTonesStep::_get_value_for(const Vector2 &uv, const int pseed) {
|
||||
|
||||
value_false /= mvv3;
|
||||
value_false += Vector3(0.5, 0.5, 0.5);
|
||||
value_false.clamp(Vector3(), Vector3(1, 1, 1));
|
||||
value_false = value_false.clamp(Vector3(), Vector3(1, 1, 1));
|
||||
|
||||
if (_invert) {
|
||||
value_false = Vector3(1, 1, 1) - value_false;
|
||||
|
Loading…
Reference in New Issue
Block a user