Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryGetPath()

override bool Terraria.Social.Steam.WorkshopSocialModule.TryGetPath ( string pathEnd,
out string fullPathFound )
inline

Definition at line 77 of file WorkshopSocialModule.cs.

78 {
79 fullPathFound = null;
80 string text = _downloader.ResourcePackPaths.FirstOrDefault((string x) => x.EndsWith(pathEnd));
81 if (text == null)
82 {
83 return false;
84 }
86 return true;
87 }
WorkshopHelper.UGCBased.Downloader _downloader

References Terraria.Social.Steam.WorkshopSocialModule._downloader.