You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I wanted to use Object Capture API for my iOS application. I found your Swift Package and imported it. But I wanted to access a particular file CaptureFolderManager. I want to use the Images it stores in the Images/ folder during the Photogrammetry Session. I can't access the CaptureFolderManager.
This is the Swift code
//
// ContentView.swift
// 3DMapp
//
// Created by Raghvender on 05/12/23.
//
import SwiftUI
import USDZScanner
structContentView:View{@StatevarcaptureFolderManager:CaptureFolderManager?=CaptureFolderManager()@StatevarisScanObjectPresenting= false
@Statevarurl:URL?varbody:someView{VStack{
if let url {}}.sheet(isPresented: $isScanObjectPresenting, content:{USDZScanner{ url inself.url = url
isScanObjectPresenting = false
}}).onAppear{
isScanObjectPresenting = true
}}}
#Preview {ContentView()}
The text was updated successfully, but these errors were encountered:
Hi, I wanted to use Object Capture API for my iOS application. I found your Swift Package and imported it. But I wanted to access a particular file
CaptureFolderManager
. I want to use the Images it stores in theImages/
folder during the Photogrammetry Session. I can't access theCaptureFolderManager
.This is the Swift code
The text was updated successfully, but these errors were encountered: