//================================================================================ // 関数(static) //================================================================================ /// <summary> /// リスナーを設定します /// </summary> public static void SetListener(this InputField.SubmitEvent self, UnityAction <string> call) { self.RemoveAllListeners(); self.AddListener(call); }