You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
623 B
C#
24 lines
623 B
C#
using UnityEngine;
|
|
|
|
namespace D2D.UI
|
|
{
|
|
[CreateAssetMenu(fileName = "BunchFlyingUIData", menuName = "SO/BunchFlyingUIData")]
|
|
public class BunchFlyingUIData : ScriptableObject
|
|
{
|
|
public Vector2 count;
|
|
|
|
[Header("Bunch size up")]
|
|
public float sizeUpDelay;
|
|
public Vector2 sizeUpAmplitude;
|
|
public Vector2 sizeUpDuration;
|
|
public Vector2 sizeUpScale;
|
|
|
|
[Header("Move to UI")]
|
|
public Vector2 afterMoveDuration;
|
|
public Vector2 afterMoveScale;
|
|
|
|
[Header("Haptic")]
|
|
public int hapticAmplitude;
|
|
public int hapticDuration;
|
|
}
|
|
} |