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
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PulseCount
- Serializable
- ProductReader
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- 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
andreset
are triggered at the same time, thereset
takes precedence (output will be zero).
- 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
andreset
are triggered at the same time, thereset
takes precedence (output will be zero).
- def read(in: RefMapIn, key: String, arity: Int): PulseCount
- Definition Classes
- PulseCount → ProductReader