コード例 #1
0
    public static void StopListening(string eventName, UnityAction <TaskableBase> listener)
    {
        if (instance == null)
        {
            return;
        }
        TileEvent thisEvent = null;

        if (instance.tileEventDictionary.TryGetValue(eventName, out thisEvent))
        {
            thisEvent.RemoveListener(listener);
        }
    }
コード例 #2
0
ファイル: MatrixNode.cs プロジェクト: Keofox/unitystation
 public void RemoveListener(UnityAction <TileType> listener)
 {
     tileEvent.RemoveListener(listener);
 }