Answers for "round to nearest hundredth unity"

C#
1

unity round float to nearest 100

//int
int sayi;
int = ((int)(((int)(sayi/100))*100));
//float
float sayi;
sayi = ((float)(((int)(sayi/100))*100));
///////////////////////////////////////////////


//int
int yuvarlama;
int sayi;
int = ((int)(((int)(sayi/yuvarlama))*yuvarlama));
//float
float yuvarlama;
float sayi;
sayi = ((float)(((int)(sayi/yuvarlama))*yuvarlama));
Posted by: Guest on January-15-2021
0

how to round to nearest whole number unity

// Prints 10
        Debug.Log(Mathf.Round(10.0f));

        // Prints 10
        Debug.Log(Mathf.Round(10.2f));

        // Prints 11
        Debug.Log(Mathf.Round(10.7f));
Posted by: Guest on May-08-2020

Code answers related to "round to nearest hundredth unity"

C# Answers by Framework

Browse Popular Code Answers by Language