DEVELOP 【Unity】UniRx:ボタンの押しっぱなしを検知する Repeat ではなく RepeatUntilDestroy を使えば dispose しなくても自動的に処理を止めることができます。using UnityEngine;using UniRx;using UniRx.Triggers;//... 2019.10.25 DEVELOPUniRxUnity
DEVELOP 【Unity】UniRx:連打防止ボタン ThrottleFirst 使って一定時間処理を受け付けない様に出来る。Button.OnClickAsObservable().TakeUntilDestroy(this).ThrottleFirst(TimeSpan.FromMilli... 2019.08.10 DEVELOPUniRxUnity