12345678910111213141516171819 |
- using Blue;
- using UnityEngine;
- /// <summary>
- /// 发送日志测试代码
- /// </summary>
- public class TempSendLog : AbstractController
- {
- private int TempCount = 0;
- void Update()
- {
- if (Input.GetKeyDown(KeyCode.L))
- {
- TempCount++;
- this.GetService<ISendLogService>().SendLog("Blue","Temp:"+TempCount);
- Debug.LogError("Temp:"+TempCount);
- }
- }
- }
|