To blend using alpha channels, you can use these formulas: r = new Color(); r.A = 1 - (1 - fg.A) * (1 - bg.A); if (r.A < 1.0e-6) return r; ...
確定! 回上一頁