Skip to content
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

Merged
merged 1 commit into from
Dec 7, 2023
Merged

Conversation

NickCulbertson
Copy link
Member

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

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.")
Copy link

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)

}
}
}

Copy link

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)

}
}
}

Copy link

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())
}
}


Copy link

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())
}
}

Copy link

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)

}
}
}

Copy link

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
Copy link

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

Copy link

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
Copy link

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
Copy link

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)

@NickCulbertson NickCulbertson merged commit 51a1655 into AudioKit:NewRecipes Dec 7, 2023
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant