Extracts the alpha component from a packed RGBA value.
Returns the alpha component of the color.
#include "UltraEngine.h"
using namespace UltraEngine;
int main(int argc, const char* argv[])
{
int color = Rgba(220,64,128,255);
Print(Red(color));
Print(Green(color));
Print(Blue(color));
Print(Alpha(color));
return 0;
}