コード例 #1
0
ファイル: Info.cs プロジェクト: ExpressoBits/EBConsole
 public Info(string content, LogAttribute logAttribute)
 {
     this.content      = content;
     this.isUpdate     = false;
     this.logAttribute = logAttribute;
     this.m_Timer      = Time.realtimeSinceStartup;
 }
コード例 #2
0
 public void Log(string logText, float timer, LogAttribute logAttribute)
 {
     Log(logText, timer, logAttribute.icon, logAttribute.backgroundColor);
 }
コード例 #3
0
ファイル: Logs.cs プロジェクト: ExpressoBits/EBConsole
 public void Log(string logText, LogAttribute logAttribute)
 {
     Log(logText, logAttribute, defaultTimer);
 }
コード例 #4
0
ファイル: Logs.cs プロジェクト: ExpressoBits/EBConsole
        public void Log(string logText, LogAttribute logAttribute, float timer)
        {
            var info = new Info(logText, logAttribute);

            Log(info, timer);
        }
コード例 #5
0
ファイル: Logs.cs プロジェクト: umb16/EBConsole
        public void Log(string logText, float timer, Sprite icon, Color backgroundColor)
        {
            LogAttribute logAttribute = new LogAttribute(icon, backgroundColor);

            Log(logText, timer, logAttribute);
        }