Skip to content

Commit

Permalink
Remove unused alpha variable in Color.lerp
Browse files Browse the repository at this point in the history
  • Loading branch information
dli7319 committed Aug 25, 2024
1 parent 9f13ae9 commit 45f3731
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ export default class Color {
r: lerp(color0r, color1r, t),
g: lerp(color0g, color1g, t),
b: lerp(color0b, color1b, t),
a: lerp(color0.a, color1.a, t),
});
}
}

0 comments on commit 45f3731

Please sign in to comment.