1
0

TTTDebug.cs 381 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace ToneTuneToolkit
  5. {
  6. /// <summary>
  7. /// Debug专用
  8. /// </summary>
  9. public class TTTDebug : MonoBehaviour
  10. {
  11. public static void Warning(string text)
  12. {
  13. Debug.Log(@"<color=" + "#FF0000" + ">" + "[TTT Warning] >" + "</color>" + text);
  14. }
  15. }
  16. }