Exemplo n.º 1
0
 static public Vector3 GetExtents(this MeshFilter item)
 {
     return(item.GetSize() * 0.5f);
 }
Exemplo n.º 2
0
 static public void SetDimension(this MeshFilter item, Axis axis, float length)
 {
     item.SetSize(item.GetSize().GetWith(axis, length));
 }
Exemplo n.º 3
0
 static public void SetDepth(this MeshFilter item, float depth)
 {
     item.SetSize(item.GetSize().GetWithZ(depth));
 }
Exemplo n.º 4
0
 static public void SetHeight(this MeshFilter item, float height)
 {
     item.SetSize(item.GetSize().GetWithY(height));
 }
Exemplo n.º 5
0
 static public void SetWidth(this MeshFilter item, float width)
 {
     item.SetSize(item.GetSize().GetWithX(width));
 }
Exemplo n.º 6
0
 static public Bounds GetBounds(this MeshFilter item)
 {
     return(new Bounds(item.GetSpacarPosition(), item.GetSize()));
 }