UI调整
This commit is contained in:
@@ -176,12 +176,18 @@ namespace Cielonos.MainGame.Buffs
|
||||
timeLeft = duration;
|
||||
}
|
||||
|
||||
public void StackDuration(TimeSubmodule other)
|
||||
public void AddDuration(TimeSubmodule other)
|
||||
{
|
||||
duration += other.duration;
|
||||
timeLeft += other.duration;
|
||||
}
|
||||
|
||||
public void AddDuration(float additionalDuration)
|
||||
{
|
||||
duration += additionalDuration;
|
||||
timeLeft += additionalDuration;
|
||||
}
|
||||
|
||||
|
||||
public class IntervalAction
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user