Bounds.Expand() and other methods that modify the struct it is called on do not work.
tracked
|KitKat|
Repro:
var bounds = new Bounds(Vector3.zero, Vector3.one);
Debug.Log("Bounds: " + bounds.size);
bounds.Expand(100f);
Debug.Log("Bounds: " + bounds.size);
Log In
This post was marked as
tracked