ARKBreedingStats.Utils.getARKml C# (CSharp) 메소드

getARKml() 공개 정적인 메소드

public static getARKml ( string text, int r, int g, int b ) : string
text string
r int
g int
b int
리턴 string
        public static string getARKml(string text, int r, int g, int b)
        {
            return "<RichColor Color=\"" + Math.Round(r / 255d, 2) + "," + Math.Round(g / 255d, 2) + "," + Math.Round(b / 255d, 2) + ",1\">" + text + "</>";
        }