TileBase.MESH_setup C# (CSharp) Method

MESH_setup() public method

public MESH_setup ( Rect UVrect ) : void
UVrect Rect
return void
    public void MESH_setup(Rect UVrect)
    {
        _width = UVrect.width / 100;
        _height = UVrect.height / 100;

        uvRect = UVrect;

        MESH_refresh();
    }