You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
8 years ago
|
// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
|
||
|
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
|
||
9 years ago
|
|
||
10 years ago
|
using UnityEngine;
|
||
10 years ago
|
|
||
|
namespace Fungus
|
||
|
{
|
||
8 years ago
|
/// <summary>
|
||
|
/// Writes a log message to the debug console.
|
||
|
/// </summary>
|
||
8 years ago
|
[CommandInfo("Scripting",
|
||
|
"Debug Log",
|
||
|
"Writes a log message to the debug console.")]
|
||
|
[AddComponentMenu("")]
|
||
|
public class DebugLog : Command
|
||
|
{
|
||
|
public enum DebugLogType
|
||
|
{
|
||
|
Info,
|
||
|
Warning,
|
||
|
Error
|
||
|
}
|
||
|
|
||
|
[Tooltip("Display type of debug log info")]
|
||
8 years ago
|
[SerializeField] protected DebugLogType logType;
|
||
8 years ago
|
|
||
|
[Tooltip("Text to write to the debug log. Supports variable substitution, e.g. {$Myvar}")]
|
||
8 years ago
|
[SerializeField] protected StringDataMulti logMessage;
|
||
8 years ago
|
|
||
|
public override void OnEnter ()
|
||
|
{
|
||
|
Flowchart flowchart = GetFlowchart();
|
||
|
string message = flowchart.SubstituteVariables(logMessage.Value);
|
||
|
|
||
|
switch (logType)
|
||
|
{
|
||
|
case DebugLogType.Info:
|
||
|
Debug.Log(message);
|
||
|
break;
|
||
|
case DebugLogType.Warning:
|
||
|
Debug.LogWarning(message);
|
||
|
break;
|
||
|
case DebugLogType.Error:
|
||
|
Debug.LogError(message);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
Continue();
|
||
|
}
|
||
|
|
||
|
public override string GetSummary()
|
||
|
{
|
||
|
return logMessage.GetDescription();
|
||
|
}
|
||
|
|
||
|
public override Color GetButtonColor()
|
||
|
{
|
||
|
return new Color32(235, 191, 217, 255);
|
||
|
}
|
||
|
}
|
||
10 years ago
|
}
|