dd15ef59c5
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.
28 lines
594 B
C#
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);
|
|
}
|
|
}
|
|
}
|