|
|
@@ -4,15 +4,14 @@ import SwiftUI |
|
|
|
extension MicItem { |
|
|
|
public struct V: View { |
|
|
|
var id: String? |
|
|
|
@StateObject var isActive = BusUI.Value(Mic.K.isActive, false) |
|
|
|
@StateObject var isActive = BusUI.Value(K.isActive, false) |
|
|
|
let ctrl = MicItem.Controller() |
|
|
|
let processors: [Any] |
|
|
|
|
|
|
|
public init(_ id: String? = nil) { |
|
|
|
self.id = id |
|
|
|
self.processors = [ |
|
|
|
//Bus.Pipe(), |
|
|
|
//Bus.Sync(shouldResetActivity, Mic.K.MI, Mic.K.isActive), |
|
|
|
//Bus.Sync(shouldResetActivity, K.MI, K.isActive), |
|
|
|
] |
|
|
|
} |
|
|
|
|
|
|
|