Remove callback parameters on states.
This commit is contained in:
@@ -107,7 +107,7 @@ namespace Cryville.Crtr.Event {
|
||||
tempEvents.Insert(index, ev);
|
||||
}
|
||||
|
||||
public override void ForwardOnceToTime(double toTime, Action<EventBatch> callback = null) {
|
||||
public override void ForwardOnceToTime(double toTime) {
|
||||
double time1 = EventId < events.Count ? events[EventId].Time : double.PositiveInfinity;
|
||||
double time2 = tempEvents.Count > 0 ? tempEvents[0].Time : double.PositiveInfinity;
|
||||
double time0 = Math.Min(time1, time2);
|
||||
|
Reference in New Issue
Block a user