forgot Particles folder

This commit is contained in:
Mike 2019-09-22 16:16:21 -07:00
parent 8712e57f07
commit e8b3c2ea09
2 changed files with 3 additions and 0 deletions

View File

View File

@ -140,6 +140,9 @@ namespace Nez
void PrintSpecialFolderAndSubfolders(string source, string[] validExtensions, bool isCompiledFolder = false)
{
if (!Directory.Exists(source))
return;
var stripPath = isCompiledFolder ? source : "";
PrintContentFiles(source, 3, stripPath, validExtensions);