2019-05-19 23:14:47 +08:00
|
|
|
|
|
|
|
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
|
|
|
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.EventSystems;
|
|
|
|
|
|
|
|
namespace UniRx.Async.Triggers
|
|
|
|
{
|
|
|
|
[DisallowMultipleComponent]
|
2019-08-13 22:33:00 +08:00
|
|
|
public class AsyncDeselectTrigger : AsyncTriggerBase, IDeselectHandler
|
2019-05-19 23:14:47 +08:00
|
|
|
{
|
|
|
|
AsyncTriggerPromise<BaseEventData> onDeselect;
|
|
|
|
AsyncTriggerPromiseDictionary<BaseEventData> onDeselects;
|
|
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<ICancelablePromise> GetPromises()
|
|
|
|
{
|
|
|
|
return Concat(onDeselect, onDeselects);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-13 22:33:00 +08:00
|
|
|
void IDeselectHandler.OnDeselect(BaseEventData eventData)
|
2019-05-19 23:14:47 +08:00
|
|
|
{
|
|
|
|
TrySetResult(onDeselect, onDeselects, eventData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-30 18:41:23 +08:00
|
|
|
public UniTask<BaseEventData> OnDeselectAsync(CancellationToken cancellationToken = default(CancellationToken))
|
2019-05-19 23:14:47 +08:00
|
|
|
{
|
|
|
|
return GetOrAddPromise(ref onDeselect, ref onDeselects, cancellationToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|