Skip to content

Commit 86d8f0e

Browse files
removed bool changeGuidFolder
1 parent 6e9a854 commit 86d8f0e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

com.stansassets.plugins-dev-kit/Editor/Utility/GuidGenerator.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,12 @@ public static void RegenerateGuid(IEnumerable<string> assetPaths)
4343
}
4444
}
4545

46-
public static void RegenerateGuidsInFolder(string folderPath, bool recursive = false, bool changeGuidFolder = true)
46+
public static void RegenerateGuidsInFolder(string folderPath, bool recursive = false)
4747
{
4848
if (Directory.Exists(folderPath))
4949
ProcessDirectory(folderPath, recursive);
5050

51-
if (changeGuidFolder)
52-
RegenerateGuid(folderPath);
51+
RegenerateGuid(folderPath);
5352
}
5453

5554
public static void RegenerateGuidsInFolder(IEnumerable<string> folderPaths, bool recursive = false)

0 commit comments

Comments
 (0)