Answers for "unity round float to nearest 100"

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

Code answers related to "unity round float to nearest 100"

C# Answers by Framework

Browse Popular Code Answers by Language