コード例 #1
0
 internal RawCommandClear(int targetState, ClearCommand.Methods method, float dotsPerSecond)
 {
     this.targetState   = targetState;
     this.method        = method;
     this.secondsPerDot = 1f / dotsPerSecond;
     counter            = -1;
 }
コード例 #2
0
 internal RawCommandClear(int targetState)
 {
     this.targetState = targetState;
     method           = ClearCommand.Methods.Instant;
     secondsPerDot    = 0f;
 }