We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c4cf6 commit 73fe62aCopy full SHA for 73fe62a
Packages/Ink/Editor/Core/InkImporter.cs
@@ -33,7 +33,11 @@ public override void OnImportAsset(AssetImportContext ctx)
33
Debug.LogWarning("Ink "+log.type+" for "+Path.GetFileName(absolutePath)+": "+log.content + " (at "+log.relativeFilePath+" "+log.lineNumber+")", inkFile);
34
break;
35
case ErrorType.Author:
36
- inkFile.todos.Add(log);
+ inkFile.todos.Add(log);
37
+ if (InkSettings.instance.printInkLogsInConsoleOnCompile)
38
+ {
39
+ Debug.Log("Ink Log for "+Path.GetFileName(absolutePath)+": "+log.content + " (at "+log.relativeFilePath+" "+log.lineNumber+")", inkFile);
40
+ }
41
42
}
43
0 commit comments