Unity - randomColor 만드는 법 및 HSV, RGBA 설명
1. randomColor.HSV HSV는 Hue(색조), Saturation(채도), Value(명도)로 구성되어 있다. public static Color ColorHSV(); public static Color ColorHSV(float hueMin, float hueMax); public static Color ColorHSV(float hueMin, float hueMax, float saturationMin, float saturationMax); public static Color ColorHSV(float hueMin, float hueMax, float saturationMin, float saturationMax, float valueMin, float valueMax) 매개 변수 hu..
2023. 5. 22.