Pitch.hx 171 B

12345678910
  1. package hxd.snd.effect;
  2. class Pitch extends hxd.snd.Effect {
  3. public var value : Float;
  4. public function new(value = 1.0) {
  5. super("pitch");
  6. this.value = value;
  7. }
  8. }