kotobuki / funnel

Automatically exported from code.google.com/p/funnel
Other
2 stars 2 forks source link

Osc doesn't work if specify times other than 0 #9

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
以下のスケッチを実行する。

require 'funnel'
include Funnel

def setup
  size 200, 200

  @gio = Gainer.new :applet => self

  Osc.service_interval = 33
  @blinker = Osc.new(Osc::SIN, 1.0, 1)
  @gio.aout(0).filters = [@blinker]
end

def draw
  background 100
end

def mousePressed
  @blinker.reset
  @blinker.start
end

What is the expected output? What do you see instead?
1回目のマウスクリックでは想定通り1回分だけOscが動作する
。しかし、2回目以降
はマウスクリックしても変化がない(初期値を指定するデ��
�タが1回だけ送信されて
いるように見える)。

Please use labels and text to provide additional information.
r374
action-coding
JRuby 1.1.2
Mac OS X 10.5.4

Original issue reported on code.google.com by kotob...@gmail.com on 12 Jul 2008 at 7:06

GoogleCodeExporter commented 8 years ago
fixed in r375

Original comment by kotob...@gmail.com on 12 Jul 2008 at 7:14