public BoxMesh SpawnBoxMesh(GameObject go, Vector3 halfSize) { BoxMesh mesh = go.AddComponent <BoxMesh>(); mesh.material = defaultMaterial; mesh.SetHalfSize(halfSize.x, halfSize.y, halfSize.z); return(mesh); }
public AutoMesh SpawnMesh(IBoxShape shape) { GameObject go = new GameObject(); BoxMesh mesh = go.AddComponent <BoxMesh>(); mesh.material = defaultMaterial; mesh.SetHalfSize(shape.HalfSize.x, shape.HalfSize.y, shape.HalfSize.z); return(mesh); }