private void add_lod_Click(object sender, EventArgs e)
        {
            GraphicsEditorPopup editorPopup = new GraphicsEditorPopup("LOD Setting Name", "LOD Value", "");

            editorPopup.Show();
        }
        private void add_filter_Click(object sender, EventArgs e)
        {
            GraphicsEditorPopup editorPopup = new GraphicsEditorPopup("Shadow Filter Name", "PCF Kernel", "");

            editorPopup.Show();
        }
        private void add_fov_Click(object sender, EventArgs e)
        {
            GraphicsEditorPopup editorPopup = new GraphicsEditorPopup("FOV Setting Name", "FOV Value", "");

            editorPopup.Show();
        }
        private void add_shadowmap_Click(object sender, EventArgs e)
        {
            GraphicsEditorPopup editorPopup = new GraphicsEditorPopup("Shadowmap Quality Name", "Resolution (PX)", "");

            editorPopup.Show();
        }
        //Add to list
        private void add_res_Click(object sender, EventArgs e)
        {
            GraphicsEditorPopup editorPopup = new GraphicsEditorPopup("Resolution Size Name", "Resolution Width", "Resolution Height");

            editorPopup.Show();
        }