Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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));
 
PREVIOUS NEXT
Tagged: #nearest #number #unity
ADD COMMENT
Topic
Name
1+8 =