您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
752 B
25 行
752 B
using System;
|
|
|
|
namespace Unity.UIWidgets.gestures {
|
|
public static class Constants {
|
|
public const float kTouchSlop = 18.0f;
|
|
|
|
public const float kDoubleTapTouchSlop = kTouchSlop;
|
|
|
|
public const float kDoubleTapSlop = 100.0f;
|
|
|
|
public const float kPanSlop = kTouchSlop * 2.0f;
|
|
|
|
public const float kScaleSlop = kTouchSlop;
|
|
|
|
public static readonly TimeSpan kPressTimeout = new TimeSpan(0, 0, 0, 0, 100);
|
|
|
|
public static readonly TimeSpan kDoubleTapTimeout = new TimeSpan(0, 0, 0, 0, 300);
|
|
|
|
public static readonly TimeSpan kLongPressTimeout = new TimeSpan(0, 0, 0, 0, 500);
|
|
|
|
public const float kMinFlingVelocity = 50.0f;
|
|
|
|
public const float kMaxFlingVelocity = 8000.0f;
|
|
}
|
|
}
|