remove textdecal submodule

This commit is contained in:
Kirill Chikalin
2024-12-06 09:00:35 +03:00
parent c2aa51ee41
commit 4cfde114bc
188 changed files with 493 additions and 441 deletions

View File

@@ -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)