AssetPackager.ScriptsHandler.FindFile C# (CSharp) Method

FindFile() private static method

private static FindFile ( string path ) : string
path string
return string
		private static string FindFile(string path)
		{
			if (ScriptHelper.IsDebuggingEnabled)
			{
				string debugFileName = GetDebugPath(path);
				return debugFileName;
			}
			return path;
		}