I want to implement adding models to the SceneKit, but I can't figure out how to add new elements. I'm using this code and I get at most one model. How do I add multiple models to the screen?
var body: some View {
VStack {
SceneView(
scene: SCNScene(named: "example.usdz"),
options: [.autoenablesDefaultLighting,
.allowsCameraControl]
)
}
}
