sceneview-android
sceneview-android copied to clipboard
SceneView is a 3D and AR Android Composable and View with Google Filament and ARCore. This is a Sceneform replacement in Kotlin
``` val viewNode = ViewNode( engine = sceneView.engine, modelLoader = sceneView.modelLoader, viewAttachmentManager = viewAttachmentManager, ).apply { disable() scale = Scale(-5f, 5f, 1f) } viewNode .loadView( context = this@ARActivity, layoutResId =...
I have some quite heavy models, each model adds around 300MB of memory when added to the scene view. When more than 10 models are added, the application starts reaching...
When dismiss AR view on setting flag to false. App crashes will following log: if(flag){ // show arview }else{ dismiss ar view } ``` 28407-28407 OplusBracketLog E [OplusViewMirrorManager] updateHostViewRootIfNeeded, not...
Hi, I want to load a model instantly where ever the camera is shown. It shows at the required position then shifts towards center . I have added zaxis value...
Here is the code I am using to render a 3D model. I need to change the movement of the skeleton. ``` val lifecycleScope = LocalLifecycleOwner.current.lifecycleScope val engine = rememberEngine()...
Could not find a way to do it, Is it not available? I'd be happy to implement it if so. @ThomasGorisse
I'm trying to take measurements with AR. So far I'm using the coordinates of a polygon from a hitTest to calculate lengths; however, those coordinates are based on the length...
It's not clear when next methods should be called: - modelLoader.destroyModel(model) - materialLoader.destroyMaterialInstance(materialInstance) and materialLoader.destroyMaterial(materialInstance) I noticed after destroying nodes with heavy 3D models memory increases on up to 150Mb....
Hi, I am trying to display a 3d that will visually appear to be on top of the normal UI. Is it possible to set the Skybox to transparent somehow?