GUILayout1 [Unity] Debug.Log를 화면에 보여주기 (GUILayout) Debug.Log를 화면에 보여주기 (GUILayout) using System.Collections; using System.Collections.Generic; using UnityEngine; public class MyLog : MonoBehaviour { string myLog; Queue myLogQueue = new Queue(); private GUIStyle guiStyle = new GUIStyle(); void Start() { guiStyle.fontSize = 20; Debug.Log("MyLog Start"); } void OnEnable() { Application.logMessageReceived += HandleLog; } void OnDisable() { Applicati.. 2020. 10. 23. 이전 1 다음