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]
|
|
|
|
public class AsyncDragTrigger : AsyncTriggerBase
|
|
|
|
{
|
|
|
|
AsyncTriggerPromise<PointerEventData> onDrag;
|
|
|
|
AsyncTriggerPromiseDictionary<PointerEventData> onDrags;
|
|
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<ICancelablePromise> GetPromises()
|
|
|
|
{
|
|
|
|
return Concat(onDrag, onDrags);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OnDrag(PointerEventData eventData)
|
|
|
|
{
|
|
|
|
TrySetResult(onDrag, onDrags, eventData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-30 18:41:23 +08:00
|
|
|
public UniTask<PointerEventData> OnDragAsync(CancellationToken cancellationToken = default(CancellationToken))
|
2019-05-19 23:14:47 +08:00
|
|
|
{
|
|
|
|
return GetOrAddPromise(ref onDrag, ref onDrags, cancellationToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|