Code snippet to merge scenes
Input file
Input.fbx
Run code
Input file
Input.fbx
Output format
Select the target format from the list
                                import aspose.threed as a3d

scene = a3d.Scene.from_file("Input.fbx")
scene2 = a3d.Scene.from_file("Input.fbx")
scene.root_node.merge(scene2.root_node)
scene.save("Output.usdz")
                                    
C# VB.NET F# Java Python Node.js
  
Copy code to the clipboard

See the source code in