How do I round up to a decimal place, like up to the next highest 0.1 or 0.5. For example, 1.021 and 1.073 would round up to 1.1, the next highest 0.1. With Round, I can specify a decimal place, but it looks like Ceiling only rounds up to an integer.
off the top of my head, this should work
Mathf.Ceil(number * 10f) / 10f;