-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.ColorAlphaBlend
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Get src alpha-blended into dst color with tint
| Parameter | Default Value | Note |
|---|---|---|
| dst | ||
| src | ||
| tint |
| Condition | Return Value |
|---|---|
| (always) | map |
// Blend a semi-transparent red over a blue background
dst = raylib.BLUE
src = raylib.ColorAlpha(raylib.RED, 0.5)
blended = raylib.ColorAlphaBlend(dst, src, raylib.WHITE)
print blended