您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
11 行
375 B
11 行
375 B
using Unity.UIWidgets.animation;
|
|
|
|
namespace Unity.UIWidgets.material {
|
|
public partial class material_ {
|
|
public static readonly Curve standardEasing = Curves.fastOutSlowIn;
|
|
|
|
public static readonly Curve accelerateEasing = new Cubic(0.4f, 0.0f, 1.0f, 1.0f);
|
|
|
|
public static readonly Curve decelerateEasing = new Cubic(0.0f, 0.0f, 0.2f, 1.0f);
|
|
}
|
|
}
|