I have been exploring different options to integrate 3D shapes, objects with my app. I came across this starter-friendly 3D creation platform Spline, and it helps generate public URL, .gitf for the 3D objects. Is there anyway that I can have the objects in my app using SwiftUI while keeping all the features?
Integrating external 3d sources or links with SwiftUI
SceneView:
import SceneKit
import SwiftUI
...
SceneView(
scene: /* a scene in SCNScene or other formats (I remember you can use .obj, etc.) */,
options: [
.allowsCameraControl,
.autoenablesDefaultLighting
.someOtherOption
]
...
)