Skip to content

Commit

Permalink
Hounds
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCulbertson committed Nov 10, 2023
1 parent c020c9d commit c1b9748
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ struct FMOscillatorView: View {
}
HStack(spacing: 10) {
PresetButton(text: "Stun Ray") { conductor.stunRay() }
PresetButton(text: "Wobble") { conductor.wobble() }
PresetButton(text: "Wobble") { conductor.wobble() }
PresetButton(text: "Fog Horn") { conductor.fogHorn() }
PresetButton(text: "Buzzer") { conductor.buzzer() }
PresetButton(text: "Spiral") { conductor.spiral() }
PresetButton(text: "Random") { conductor.randomize() }
PresetButton(text: "Buzzer") { conductor.buzzer() }
PresetButton(text: "Spiral") { conductor.spiral() }
PresetButton(text: "Random") { conductor.randomize() }
}.padding()
HStack {
ForEach(conductor.osc.parameters) {
Expand Down

0 comments on commit c1b9748

Please sign in to comment.