1
0
mirror of synced 2024-12-02 02:57:23 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/BFRES/Materials/ShaderParams/ParamValueDialog.cs
KillzXGaming dd15ef59c5 Many more improvements and additions
Added NUT support (viewing GX2 and DDS texture data)
Fixed importing uncompressed dds using the mask data.
Add EFE support from smash 4 wii u and 3ds.
Redo the shader param editor. Uses a list again for faster access and viewing. I will have items drop down from a floating window next to the item soon.
2019-04-24 21:17:29 -04:00

28 lines
594 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Switch_Toolbox.Library.Forms;
namespace FirstPlugin.Forms
{
public partial class ParamValueDialog : STForm
{
public ParamValueDialog()
{
InitializeComponent();
}
public void AddControl(UserControl control)
{
stPanel1.Controls.Clear();
stPanel1.Controls.Add(control);
}
}
}