From 6de89ee7727f8d7a7315e6664dc5de98fc355bb3 Mon Sep 17 00:00:00 2001 From: Razmoth <32140579+Razmoth@users.noreply.github.com> Date: Sun, 17 Sep 2023 15:25:03 +0400 Subject: [PATCH] - [CLI] avoid conflicted option with library one --- AssetStudioCLI/Components/CommandLine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AssetStudioCLI/Components/CommandLine.cs b/AssetStudioCLI/Components/CommandLine.cs index 00df181..ae252d1 100644 --- a/AssetStudioCLI/Components/CommandLine.cs +++ b/AssetStudioCLI/Components/CommandLine.cs @@ -102,7 +102,7 @@ namespace AssetStudioCLI MapOp = new Option("--map_op", "Specify which map to build."); MapType = new Option("--map_type", "AssetMap output type."); MapName = new Option("--map_name", () => "assets_map", "Specify AssetMap file name."); - UnityVersion = new Option("--version", "Specify Unity version."); + UnityVersion = new Option("--unity_version", "Specify Unity version."); GroupAssetsType = new Option("--group_assets", "Specify how exported assets should be grouped."); Model = new Option("--models", "Enable to export models only"); AIFile = new Option("--ai_file", "Specify asset_index json file path (to recover GI containers).").LegalFilePathsOnly();