Skip to content

Commit

Permalink
支持2019.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Perfare committed Mar 5, 2020
1 parent 93eefe6 commit b3f51dc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UnityLive2DExtractor/CubismMotion3Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void GetLive2dPath(GenericBinding binding, out string target, out string
var path = binding.path;
id = null;
target = null;
if (bonePathHash.TryGetValue(path, out var boneName))
if (path != 0 && bonePathHash.TryGetValue(path, out var boneName))
{
var index = boneName.LastIndexOf('/');
id = boneName.Substring(index + 1);
Expand Down
Binary file modified UnityLive2DExtractor/Libraries/AssetStudio.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion UnityLive2DExtractor/UnityLive2DExtractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="AssetStudio, Version=0.13.25.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="AssetStudio, Version=0.13.27.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Libraries\AssetStudio.dll</HintPath>
</Reference>
Expand Down

0 comments on commit b3f51dc

Please sign in to comment.