Questions tagged [sceneview]

For questions that are specifically related to Unity3D's SceneView. You should consider to rather use tags [unity3d] or [unity3d-editor].

For tagging questions that are specifically related to Unity3D's SceneView.

Related tags:

74 questions
1
vote
1 answer

Sceneview freezes when present web view controller

I'm using Safari Services kit to present a web view when an SCNode is clicked. However, when I go back from the safariVC to my VC with the sceneView, the sceneView is frozen even though I restart the session by re-running the session. I read on this…
14wml
  • 4,048
  • 11
  • 49
  • 97
1
vote
1 answer

Prism and Esri GetElevationAsync(mapPoint)

We are building an application with visual studios 2017 using wpf, C# and Prism v6.1.0.0. We have a 3d view that is an Esri .net runtime SceneView. We wanted to use the GetElevationAsync(mapPoint) function to get elevation data from DTED level 0…
Eric Boice
  • 11
  • 2
1
vote
1 answer

After enable user interaction on a SCNView, how to make it only rotate horizontally?

I’m new to SceneKit,and what I’m trying do is to load a dae file to a SCNScene, set this SCNScene to a SCNView, enable the user interaction, and then I can rotate the 3D model through gestures. So far it goes well, when I swipe or zoom in/zoom out,…
Alison
  • 431
  • 6
  • 19
0
votes
0 answers

How do I code multiplayer AR Game for my final year project?

So my professor suggested that I should create a multiplayer AR Game such that it involves one user to hit a ball which makes it change its position and then another player should be able to react to that change by hitting the ball from its updated…
0
votes
0 answers

How to take screenshot of a composable function

I have a Composable function that create a Box. And inside the box i have three layers of composable view. // Custom composable function, that i want to take screenshoot ScreenshotBox() { // An AndroidView that provide ArSceneView (CameraView) …
0
votes
1 answer

ARCore Android Studio- How to place 2d textiew on back of the 3d Model android and rotate?

I have a 3d model and a viewRenderable layout This is how i loaded the model model = ModelRenderable.builder() .setSource( requireContext(), RenderableSource.builder() .setSource( …
Rohit gupta
  • 211
  • 3
  • 18
0
votes
1 answer

Add TextView on SceneView

I try to render 3D model using SceneView and I need to display text on SceneView. The problem that I am facing when viewing the 3D model is that it covers the text. XML code
Amr Shekh Zen
  • 41
  • 1
  • 8
0
votes
1 answer

how to draw an arrow in all direction using Two Points, Start point vector and end point vector in SceneKit Swift?

how can draw an arrow in all direction in sceneview using Two Points( Start point vector and end point vector) see attachment draw arrow like Up side , Downside , left side up and down, right side up and down enter image description here. i have…
0
votes
0 answers

Android SceneView Transformable node rotation

I have a problem with the rotation of a transformable node, the 3D model is rotated via a sensor connected via bluetooth, the rotations occur correctly but I would like to avoid a zoom effect when I direct the model towards the camera, rotation…
0
votes
0 answers

Is there any mechanism where we can add Node in sceneform without tracking?

Friends I want to add shaper for show 360 video and 360 with camera position, Current we can add successfully all the function and its working fine, But the problem is the shaper taking time to load on screen because in background finding tracking…
0
votes
0 answers

How can i change blengindMode in material?

I want to make a transparent material for the door model by using lib SceneView for AR. It turned out that my material have blendingMode: OPAQUE, which not supported transparent for model. So I need to change blendingMode: TRANSPARENT. How I can do…
0
votes
0 answers

How to apply texture to a 3d model using SceneView

I'm new to using Swift, I'm making an app, which shows 3d models ".usdz" using SceneView. I am trying to change the texture of these either with a .jpg or .png image, it should be noted that I am using "ContentView" forms. import SwiftUI import…
0
votes
1 answer

How to rotate object horizontally in SwiftUI SceneView

I am loading a 3D object using SceneView in SwiftUI: SceneView( scene: scene, pointOfView: cameraNode, options: [.autoenablesDefaultLighting] ) I have removed .allowsCameraControl property from options to…
Mc.Lover
  • 4,813
  • 9
  • 46
  • 80
0
votes
0 answers

SceneKit - allowsCameraControl plus programmatic camera control?

I have a scene with an explicit camera in it, and with allowsCameraControl enabled. Before the user modifies the camera, I can programmatically set aspects of the camera and camera node. For example fieldOfView, position. But once the user…
orion elenzil
  • 4,484
  • 3
  • 37
  • 49
0
votes
1 answer

EllipticArcSegment in SceneView

I want to create an arc in an SceneView. People told me I have to use EllipticArcSegment, and it works in MapView, but I can use it in SceneView. When I use EllipticArcSegment in ScenView I get a line not an arc. See the picture. public…