1
0
mirror of synced 2024-09-24 19:48:21 +02:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/Editors/Assimp Settings.cs
2019-05-05 17:30:11 -04:00

67 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Assimp;
namespace Switch_Toolbox.Library.Forms
{
public partial class Assimp_Settings : STForm
{
public uint SkinLimitMax = 4;
public bool UseNodeTransform = true;
public bool RotateSkeleton90Y = false;
public Assimp_Settings()
{
InitializeComponent();
}
public PostProcessSteps GetFlags()
{
RotateSkeleton90Y = rotateBonesY90.Checked;
UseNodeTransform = useNodeTransform.Checked;
SkinLimitMax = (uint)numericUpDown1.Value;
var Flags = PostProcessSteps.None;
if (generateNormalsChk.Checked)
Flags |= PostProcessSteps.GenerateNormals;
if (smoothNormalsChk.Checked)
Flags |= PostProcessSteps.GenerateSmoothNormals;
if (generateTansBitansChk.Checked)
Flags |= PostProcessSteps.CalculateTangentSpace;
if (flipUVsChk.Checked)
Flags |= PostProcessSteps.FlipUVs;
if (limtBoneWeightChk.Checked)
Flags |= PostProcessSteps.LimitBoneWeights;
if (joinDupedVertsSk.Checked)
Flags |= PostProcessSteps.JoinIdenticalVertices;
if (preTransformVerticesChk.Checked)
Flags |= PostProcessSteps.PreTransformVertices;
if (leftHandedChk.Checked)
Flags |= PostProcessSteps.MakeLeftHanded;
if (triangulateChk.Checked)
Flags |= PostProcessSteps.Triangulate;
return Flags;
}
private void limtBoneWeightChk_CheckedChanged(object sender, EventArgs e) {
numericUpDown1.Enabled = limtBoneWeightChk.Checked;
}
private void rotateBonesY90_CheckedChanged(object sender, EventArgs e)
{
RotateSkeleton90Y = rotateBonesY90.Checked;
}
}
}