You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the audio switch on the app ui and the App.audio prop will trigger either graph.start() or graph.stop() where graph is the global audio graph. To implement multiple apps #3 the switch should be repurposed to instead toggle between self.audio_out.play() and self.audio_out.stop() which register or deregister the App's audio network on the graph (instead of starting/stopping the graph itself, which could have bad side-effects).
The text was updated successfully, but these errors were encountered:
Currently the audio switch on the app ui and the
App.audio
prop will trigger eithergraph.start()
orgraph.stop()
where graph is the global audio graph. To implement multiple apps #3 the switch should be repurposed to instead toggle betweenself.audio_out.play()
andself.audio_out.stop()
which register or deregister the App's audio network on the graph (instead of starting/stopping the graph itself, which could have bad side-effects).The text was updated successfully, but these errors were encountered: