i have an issue in this code
call: Cannot convert value of type 'SessionSettings.Type' to expected argument type 'SessionSettings'
`struct ARViewContainer: UIViewRepresentable {
@EnvironmentObject var placementSettings: PlacementSettings
@EnvironmentObject var sessionSettings: SessionSettings
func makeUIView(context: Context) -> CustomARView {
let arView = CustomARView(frame: .zero, sessionSettings: SessionSettings)
// Subscribe to SceneEvents,Update
return arView
}`
i have an issue in this code
call: Cannot convert value of type 'SessionSettings.Type' to expected argument type 'SessionSettings'
`struct ARViewContainer: UIViewRepresentable {
@EnvironmentObject var placementSettings: PlacementSettings
@EnvironmentObject var sessionSettings: SessionSettings