2023-10-19 15:00:19 +08:00
|
|
|
|
namespace Gameplay.Buff
|
2023-08-22 19:08:45 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class BuffChangeSpeed : BaseBuff
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public float ChangeSpeedRate;
|
|
|
|
|
|
|
|
|
|
|
|
protected override void _OnInit()
|
|
|
|
|
|
{
|
|
|
|
|
|
base._OnInit();
|
|
|
|
|
|
|
|
|
|
|
|
ChangeSpeedRate = configData.FloatParams[0];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|