void DrawOcean()
    {
        if (mProjectionGrid == null)
        {
            return;
        }

        mProjectionGrid.Draw();
    }
예제 #2
0
    protected override void Draw(Vector3 _lookAt, Material _drawer)
    {
        if (mProjectionGrid == null)
        {
            mProjectionGrid = new ProjectionGrid();
            mProjectionGrid.Initial(_drawer);
        }

        mProjectionGrid.Draw();
    }