-
-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathDoubleTapBehavior.cs
More file actions
27 lines (24 loc) · 821 Bytes
/
DoubleTapBehavior.cs
File metadata and controls
27 lines (24 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Silk.NET.Input
{
/// <summary>
/// Controls the behavior of the double tap gesture tracking.
/// </summary>
public enum DoubleTapBehavior
{
/// <summary>
/// Always emit the first tap as a single tap.
/// </summary>
EmitFirstSingleTap,
/// <summary>
/// Always emit the first and second tap as single taps.
/// </summary>
EmitBothSingleTaps,
/// <summary>
/// Do not emit single taps and wait for the double tap time to elapse.
/// The first single tap is only emitted after the time has elapsed.
/// </summary>
WaitForDoubleTapTimeElapse
}
}