-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix background color blending by using doubles
- Loading branch information
1 parent
fef633c
commit f34b9da
Showing
2 changed files
with
57 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import 'package:flame/extensions.dart'; | ||
|
||
class MutableColor { | ||
final Vector3 rgb; | ||
|
||
double get r => rgb.x; | ||
set r(double value) => rgb.x = value; | ||
|
||
double get g => rgb.y; | ||
set g(double value) => rgb.y = value; | ||
|
||
double get b => rgb.z; | ||
set b(double value) => rgb.z = value; | ||
|
||
MutableColor(double r, double g, double b) : rgb = Vector3(r, g, b); | ||
|
||
MutableColor.fromColor(Color color) | ||
: this( | ||
color.red.toDouble(), | ||
color.green.toDouble(), | ||
color.blue.toDouble(), | ||
); | ||
|
||
Color toColor() => Color.fromARGB(255, r.round(), g.round(), b.round()); | ||
|
||
MutableColor operator +(MutableColor other) { | ||
return MutableColor(r + other.r, g + other.g, b + other.b); | ||
} | ||
|
||
MutableColor operator /(double scalar) { | ||
return MutableColor(r / scalar, g / scalar, b / scalar); | ||
} | ||
|
||
void moveTowards(MutableColor target, double ds) { | ||
r = _moveTowards(r, target.r, ds); | ||
g = _moveTowards(g, target.g, ds); | ||
b = _moveTowards(b, target.b, ds); | ||
} | ||
|
||
double _moveTowards(double current, double target, double ds) { | ||
if (current == target) { | ||
return current; | ||
} | ||
return current + (target - current).clamp(-ds, ds); | ||
} | ||
} |