Project Unknown
id:project-unknown
Unityで複数のGameObjectに一斉に通知する方法 Notification, EventBus
はじめに UnityでGameObjectAがGameObjectBに何かしらのイベントを渡す場合、何パターンか、方法があります。 ExecuteEvent (SendMessage) ラムダ式 (delegate通知) System.Action (delegateとほぼ同意) ただ、上記の場合、GameObjectAがGameObjectBの存在を知っていないと行けないですし、2つのGameObject(クラス)がつな…