Beispiel #1
0
 public void MarkTick()
 {
     State |= (EDurationState.TICKED_THIS_FRAME | EDurationState.TICKED_SINCE_RESET);
 }
Beispiel #2
0
 public void MarkExpired()
 {
     State |= (EDurationState.EXPIRED);
 }
Beispiel #3
0
 public void ResetTickState()
 {
     State &= ~(EDurationState.TICKED_THIS_FRAME | EDurationState.TICKED_SINCE_RESET);
 }