完成编队 增加多个细节和小功能

This commit is contained in:
2025-12-10 19:12:27 +08:00
parent c0a822b958
commit edc2608f47
131 changed files with 11889 additions and 127 deletions
@@ -0,0 +1,30 @@
using UnityEngine;
namespace SmoothShakeFree
{
[CreateAssetMenu(fileName = "SmoothShakePreset", menuName = "Smooth Shake Free/Smooth Shake Preset", order = 1)]
public class SmoothShakeFreePreset : ScriptableObject
{
[Header("Time Settings")]
[Tooltip("Settings for the shake timing")]
public TimeSettings timeSettings;
#if UNITY_2020
[Header("Position Shake Settings")]
[Tooltip("Settings for Position Shake")]
public Shaker positionShake = new Shaker();
[Header("Rotation Shake Settings")]
[Tooltip("Settings for Rotation Shake")]
public Shaker rotationShake = new Shaker();
#else
[Header("Position Shake Settings")]
[Tooltip("Settings for Position Shake")]
public Shaker positionShake = new();
[Header("Rotation Shake Settings")]
[Tooltip("Settings for Rotation Shake")]
public Shaker rotationShake = new();
#endif
}
}