// Draw outline of potential new Player Cube

    private void OnRenderObject()
    {
        if (ActionAllowed == true && BuildMode == true)
        {
            StaticTools.DrawSquare(NewCube, 1, FrameColor);
        }
    }