Packages

object PulseCount extends ProductReader[PulseCount] with Serializable

A UGen that counts the number of triggers observed.

Examples
// count mouse clicks, reset at 10
play {
  val tr    = MouseButton.kr(lag = 0)
  val reset = PulseDivider.kr(tr, 10)
  val c     = PulseCount.kr(tr, reset)
  c.poll(tr + Impulse.kr(0), "count")
  ()
}
See also

Stepper

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PulseCount
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(trig: GE, reset: GE = 0): PulseCount

    trig

    a trigger happens when the signal changes from non-positive to positive

    reset

    when triggered, resets the counter to zero. When both trig and reset are triggered at the same time, the reset takes precedence (output will be zero).

  2. def kr(trig: GE, reset: GE = 0): PulseCount

    trig

    a trigger happens when the signal changes from non-positive to positive

    reset

    when triggered, resets the counter to zero. When both trig and reset are triggered at the same time, the reset takes precedence (output will be zero).

  3. def read(in: RefMapIn, key: String, arity: Int): PulseCount
    Definition Classes
    PulseCountProductReader