13 lines
327 B
C#
13 lines
327 B
C#
using System;
|
|
|
|
namespace SLSUtilities.Feedback
|
|
{
|
|
/// <summary>
|
|
/// 标记 AnimationCurve 字段,使其在 Inspector 中显示震动曲线预设按钮组。
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class ShakeCurvePresetAttribute : Attribute
|
|
{
|
|
}
|
|
}
|