diff --git a/AssetStudio.CLI/Exporter.cs b/AssetStudio.CLI/Exporter.cs index 1a42248..6ec097b 100644 --- a/AssetStudio.CLI/Exporter.cs +++ b/AssetStudio.CLI/Exporter.cs @@ -366,7 +366,7 @@ namespace AssetStudio.CLI game = Studio.Game, collectAnimations = Properties.Settings.Default.collectAnimations, uvs = JsonConvert.DeserializeObject>(Properties.Settings.Default.uvs), - texs = JsonConvert.DeserializeObject>(Properties.Settings.Default.texs), + texs = JsonConvert.DeserializeObject>(Properties.Settings.Default.texs), }; var convert = animationList != null ? new ModelConverter(m_Animator, options, animationList.Select(x => (AnimationClip)x.Asset).ToArray()) @@ -392,7 +392,7 @@ namespace AssetStudio.CLI game = Studio.Game, collectAnimations = Properties.Settings.Default.collectAnimations, uvs = JsonConvert.DeserializeObject>(Properties.Settings.Default.uvs), - texs = JsonConvert.DeserializeObject>(Properties.Settings.Default.texs), + texs = JsonConvert.DeserializeObject>(Properties.Settings.Default.texs), }; var convert = animationList != null ? new ModelConverter(gameObject, options, animationList.Select(x => (AnimationClip)x.Asset).ToArray())