Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@ class InstrumentSFZConductor: ObservableObject, HasAudioEngine {
}

init() {
// Load SFZ file with Dunne Sampler
if let fileURL = Bundle.main.url(forResource: "Sounds/sqr", withExtension: "SFZ") {
instrument.loadSFZ(url: fileURL)
} else {
Log("Could not find file")
DispatchQueue.main.async {
// Load SFZ file with Dunne Sampler.
// This needs to be loaded after a delay the first time
// to get the correct Settings.sampleRate if it is 48_000.
if let fileURL = Bundle.main.url(forResource: "Sounds/sqr", withExtension: "SFZ") {
self.instrument.loadSFZ(url: fileURL)
} else {
Log("Could not find file")
}
self.instrument.masterVolume = 0.15
}
instrument.masterVolume = 0.15
engine.output = instrument
}
}
Expand Down
Loading