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