Skip to content

Commit

Permalink
Revert "Merge branch 'pr/20'"
Browse files Browse the repository at this point in the history
This reverts commit ea0f32c, reversing
changes made to e140c88.
  • Loading branch information
YukihoAA committed Aug 27, 2023
1 parent 32190f8 commit a7016b8
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Assets/OSCmooth/Editor/OSCmoothUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,22 +229,6 @@ public static AnimationClip[] CreateFloatSmootherAnimation(AnimatorController an
{
Directory.CreateDirectory(directory);
}

// Create paths for v2/ params
string[] paramNameSplit = paramName.Split('/');
if (paramNameSplit.Length > 1)
{
string nestedDirectory = directory;
for (int i = 0; i < paramNameSplit.Length - 1; i++)
{
nestedDirectory += paramNameSplit[i] + "/";
if (!Directory.Exists(nestedDirectory))
{
Directory.CreateDirectory(nestedDirectory);
}
}
}


string[] guid = (AssetDatabase.FindAssets(NameNoSymbol(paramName) + "-1" + "Smoother.anim"));

Expand Down

0 comments on commit a7016b8

Please sign in to comment.