You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
optionDescription:"Specify the text by which assets should be filtered\n"+
409
420
"Looks for assets that contain the specified text in their names or containers\n"+
410
421
"*To specify multiple values write them separated by ',' or ';' without spaces\n",
411
-
optionExample:"Example: \"--filter-by-text portrait\" or \"--filter-by-text portrait,art\"\n",
422
+
optionExample:"Example: \"--filter-by-text portrait\" or \"--filter-by-text portrait,art\"",
412
423
optionHelpGroup:HelpGroups.Filter
413
424
);
414
425
#endregion
@@ -627,6 +638,16 @@ public static void ParseArgs(string[] args)
627
638
f_l2dForceBezier.Value=true;
628
639
resplittedArgs.RemoveAt(i);
629
640
break;
641
+
case"--fbx-uvs-as-diffuse":
642
+
if(o_workMode.Value!=WorkMode.SplitObjects)
643
+
{
644
+
Console.WriteLine($"{"Error".Color(brightRed)} during parsing [{flag.Color(brightYellow)}] flag. This flag is not suitable for the current working mode [{o_workMode.Value}].\n");
645
+
ShowOptionDescription(o_workMode);
646
+
return;
647
+
}
648
+
f_fbxUvsAsDiffuseMaps.Value=true;
649
+
resplittedArgs.RemoveAt(i);
650
+
break;
630
651
case"--not-restore-extension":
631
652
f_notRestoreExtensionName.Value=true;
632
653
resplittedArgs.RemoveAt(i);
@@ -1273,6 +1294,9 @@ public static void ShowCurrentOptions()
0 commit comments