remove textdecal submodule
This commit is contained in:
@@ -73,7 +73,7 @@ namespace AssetStoreTools.Exporter
|
||||
protected string GetAssetGuid(string assetPath, bool generateForPlugin, bool hiddenSearch)
|
||||
{
|
||||
// Skip meta files as they do not have guids
|
||||
if (assetPath.EndsWith(".meta"))
|
||||
if (assetPath.EndsWith(".meta", StringComparison.OrdinalIgnoreCase))
|
||||
return string.Empty;
|
||||
|
||||
// Skip hidden assets. They normally do not have meta files, but
|
||||
@@ -81,6 +81,10 @@ namespace AssetStoreTools.Exporter
|
||||
if (assetPath.EndsWith("~"))
|
||||
return string.Empty;
|
||||
|
||||
var assetName = assetPath.Split('/').Last();
|
||||
if (assetName.StartsWith("."))
|
||||
return string.Empty;
|
||||
|
||||
// Skip ProjectVersion.txt file specifically as it may introduce
|
||||
// project compatibility issues when imported
|
||||
if (string.Compare(assetPath, "ProjectSettings/ProjectVersion.txt", StringComparison.OrdinalIgnoreCase) == 0)
|
||||
|
||||
Reference in New Issue
Block a user