We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096ed56 commit 06cbd4bCopy full SHA for 06cbd4b
Sources/AudioKitEX/Node+AudioKitAU.swift
@@ -63,3 +63,9 @@ public func instantiate(effect code: String) -> AVAudioNode {
63
public func instantiate(mixer code: String) -> AVAudioNode {
64
instantiate(componentDescription: AudioComponentDescription(mixer: code))
65
}
66
+
67
+/// Create a non-realtime effect for the given unique identifier
68
+/// - Parameter code: Unique four letter identifier
69
+public func instantiate(nonRealTimeEffect code: String) -> AVAudioNode {
70
+ instantiate(componentDescription: AudioComponentDescription(nonRealTimeEffect: code))
71
+}
0 commit comments