「Unity/UniRx/Subject」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==サンプル== <pre> Subject<string> subject = new Subject<string>(); // イベント登録 subject.Subscribe(msg => Debug.Log("msg1:" + msg)); subject.Subscribe(msg =...」) |
(相違点なし)
|
2021年10月14日 (木) 01:33時点における版
サンプル
Subject<string> subject = new Subject<string>(); // イベント登録 subject.Subscribe(msg => Debug.Log("msg1:" + msg)); subject.Subscribe(msg => Debug.Log("msg2:" + msg)); // イベント発行 subject.OnNext("hello"); subject.OnNext("world");
ログ
msg1:hello msg2:hello msg1:world msg2:world