ARKBreedingStats.Utils.getARKmlFromPercent C# (CSharp) Method

getARKmlFromPercent() public static method

public static getARKmlFromPercent ( string text, int percent, double light ) : string
text string
percent int
light double
return string
        public static string getARKmlFromPercent(string text, int percent, double light = 0)
        {
            int r, g, b;
            getRGBFromPercent(out r, out g, out b, percent, light);
            return getARKml(text, r, g, b);
        }