Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
Use a converter script to round the value. You can round using something like:

var rpm = (int)value;
rpm = (int)(Math.Round(rpm / 50f) * 50f);
return rpm;