We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9a854 commit 86d8f0eCopy full SHA for 86d8f0e
com.stansassets.plugins-dev-kit/Editor/Utility/GuidGenerator.cs
@@ -43,13 +43,12 @@ public static void RegenerateGuid(IEnumerable<string> assetPaths)
43
}
44
45
46
- public static void RegenerateGuidsInFolder(string folderPath, bool recursive = false, bool changeGuidFolder = true)
+ public static void RegenerateGuidsInFolder(string folderPath, bool recursive = false)
47
{
48
if (Directory.Exists(folderPath))
49
ProcessDirectory(folderPath, recursive);
50
51
- if (changeGuidFolder)
52
- RegenerateGuid(folderPath);
+ RegenerateGuid(folderPath);
53
54
55
public static void RegenerateGuidsInFolder(IEnumerable<string> folderPaths, bool recursive = false)
0 commit comments