using UnityEngine; using System.Collections; using UnityEditor; [CustomEditor( typeof( MessageLog ) )] public class MessageLogEditor : Editor { public override void OnInspectorGUI() { MessageLog msgLog = (MessageLog)target; msgLog.IsLogC2SMessage = E…