-
-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added New Recipes #139
Added New Recipes #139
Conversation
Added Additional Packages category with their respective demos: Controls, Flow, Keyboard, Piano Roll, Synthesis Toolkit, & Waveform Added Arpeggiator recipe (using Sequencer) Added SpriteKit Audio recipe Added DunneAudioKit Synth recipe (in WIP) Added Input Device Demo recipe (already in project but unlinked) Added parameters to Instrument SFZ Added info button Reordered categories
.alert("AudioKit Cookbook", isPresented: $showingInfo) { | ||
Button("OK", role: .cancel) { } | ||
} message: { | ||
Text("AudioKit is an audio synthesis, processing, and analysis platform for iOS, macOS, and tvOS.\n\nMost of the examples that were inside of AudioKit are now in this application.\n\nIn addition to the resources found here, there are various open-source example projects on GitHub and YouTube created by AudioKit contributors.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line Length Violation: Line should be 200 characters or less: currently 340 characters (line_length)
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
DisclosureGroup("Audio Player") { | ||
Group { | ||
NavigationLink("Completion Handler", destination: AudioPlayerCompletionHandler()) | ||
NavigationLink("Multi Segment Player", destination: MultiSegmentPlayerView()) | ||
NavigationLink("Playlist", destination: PlaylistView()) | ||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
@@ -185,19 +185,44 @@ struct MasterView: View { | |||
NavigationLink("Waveform Morphing", destination: MorphingOscillatorView()) | |||
} | |||
} | |||
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
} | ||
} | ||
var body: some View { | ||
GeometryReader { proxy in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused Closure Parameter Violation: Unused parameter "proxy" in a closure should be replaced with _. (unused_closure_parameter)
@State var angle: Float = 0 | ||
@State var x: Float = 0.5 | ||
@State var y: Float = 0.5 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing Whitespace Violation: Lines should not have trailing whitespace. (trailing_whitespace)
@State var radius: Float = 0 | ||
@State var angle: Float = 0 | ||
@State var x: Float = 0.5 | ||
@State var y: Float = 0.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Identifier Name Violation: Variable name should be between 3 and 40 characters long: 'y' (identifier_name)
@State var modulation: Float = 0 | ||
@State var radius: Float = 0 | ||
@State var angle: Float = 0 | ||
@State var x: Float = 0.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Identifier Name Violation: Variable name should be between 3 and 40 characters long: 'x' (identifier_name)
Added Additional Packages category with their respective demos: Controls, Flow, Keyboard, Piano Roll, Synthesis Toolkit, & Waveform Added Arpeggiator recipe (using Sequencer)
Added SpriteKit Audio recipe
Added DunneAudioKit Synth recipe (in WIP)
Added Input Device Demo recipe (already in project but unlinked) Added parameters to Instrument SFZ
Added info button
Reordered categories