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
I need to display labels or text annotations above specific nodes. I've successfully added child nodes to my AnchorNode, but I'm unable to find a straightforward way to attach labels...
As far as I can see, the limit of bones supported by the Filamented class is 256, and if you have more than that, a crash occurs. With more demanding...
` private fun loadModel() { viewLifecycleOwner.lifecycleScope.launch { val modelFile = "test/test2.glb" val modelInstance = binding.sceneView.modelLoader.createModelInstance(modelFile) val modelNode = ModelNode( modelInstance = modelInstance, ) binding.sceneView.addChildNode(modelNode) touchEvent() } } private fun handleTouch(motionEvent:...
My app uses AR based on the ar-model-viewer example. I need to display a very large model, but to see it fully I have to move far away. ARCore starts...
When using arsceneview compose component initially it works fine but sometimes if I reopen it many times (it is hidden from compose view with if consensus) or when hiding and...
Hello, Is it possible to have a working sample of the use of `ViewNode2`? It seems the code below almost works but it stops [here](https://github.com/SceneView/sceneview-android/blob/main/sceneview/src/main/java/io/github/sceneview/node/ViewNode2.kt#L355) because the texture stream is...
Plane renderer causes memory leaks on Samsung galaxy tab s9 FE. The memory is increasing about 100 Mb every 2-3 sec.
Hi! Thank you for library. I`m now crearting an ar app with compose and need to add node with custom compose view. I tried with **ViewNode2**: ``` private fun **createViewNode**(context:...
I am using branch (feat/ar_view_node_sample, PR #525) which is now merged yet. And want to use custom background color for the view. For some reason color is not correct. The...