mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
KCL fixes for 3D World Presets
This commit is contained in:
parent
13285f9d5d
commit
e3ac2625ef
3 changed files with 7 additions and 0 deletions
|
@ -203,6 +203,12 @@ namespace FirstPlugin
|
|||
ofd.Filter = "Supported Formats|*.obj";
|
||||
if (ofd.ShowDialog() != DialogResult.OK) return;
|
||||
|
||||
string path = Path.Combine(Runtime.ExecutableDir, "KclMaterialPresets");
|
||||
if (!Directory.Exists(path))
|
||||
Directory.CreateDirectory(path);
|
||||
|
||||
CollisionPresetData.LoadPresets(Directory.GetFiles("KclMaterialPresets"));
|
||||
|
||||
var form = Runtime.MainForm;
|
||||
|
||||
var thread = new Thread(() =>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"GameTitle": "Mario 3D World",
|
||||
"Platform": "WII U",
|
||||
"PrismThickness": 40.0,
|
||||
"SphereRadius": 0.0,
|
||||
"Comments": "This game uses byml to customize presets.",
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue