Bezi回来了

This commit is contained in:
SoulliesOfficial
2026-04-28 15:46:32 -04:00
parent 7379583165
commit 0902ca8a9e
56 changed files with 3285 additions and 3803 deletions

View File

@@ -3,8 +3,16 @@ using UnityEngine;
namespace Cielonos.MainGame.Effects.Feedback
{
public class BloomAction : CurveShakeAction
public class BloomAction : PostprocessingActionBase
{
protected override void TriggerEvent(FeedbackContext context)
{
throw new System.NotImplementedException();
}
protected override void StopEvent(FeedbackContext context)
{
throw new System.NotImplementedException();
}
}
}