유니티 float형 변수 소수점 자리 정하기 string.Format()
오늘은 float형 변수의 소수점을 정리해주는 string.Format() 함수에 대해 알아 보았다. 함수의 사용 방법은 아래와 같다. public class FormatFloat : MonoBehaviour{ // Start is called before the first frame update void Start() { float test = 0.12345f; Debug.Log(test); Debug.Log(string.Format("{0:N1}", test)); //소수점 첫째 자리까지 Debug.Log(string.Format("{0:N2}", test)); //소수점 둘째 자리까지 Debug.Log(string.Format("{0:N3}", test)); //소수점 셋째 자리까지 Debug.Lo..
프로그래밍/유니티
2020. 6. 9. 19:27