From 60973394ad9069df18969ef52583ee912050d259 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 28 Dec 2020 18:13:45 +0000 Subject: [PATCH] Add Fade function for compatibility with previous versions - Recommended you use ColorAlpha instead but this makes it easier for users to update to 3.5.0. Fixes #68. --- Raylib-cs/Raylib.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 158e0d8..545f368 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -842,6 +842,10 @@ namespace Raylib_cs // Callback delegate used in SetTraceLogCallback to allow for custom logging public delegate void TraceLogCallback(TraceLogType logType, string text, IntPtr args); + // Returns color with alpha applied, alpha goes from 0.0f to 1.0f + // NOTE: Added for compatability with previous versions + public static Color Fade(Color color, float alpha) => ColorAlpha(color, alpha); + //------------------------------------------------------------------------------------ // Window and Graphics Device Functions (Module: core) //------------------------------------------------------------------------------------