I would like to load from many OBJ files into the same Scene in Aspose 3D DLL, and then exporting the merged, total model out to a single GLTF. Is this possible? From what I can see, the only way to import geometry is with the Open method, and it seems to reset the scene when called.
@havarsa,
We have logged a feature request to add support of merging 3D scenes under the ticket ID THREEDNET-301 in our issue tracking system. We have linked your post to this ticket and will keep you informed regarding any available updates.
In reference to the linked ticket ID THREEDNET-301, you can merge scenes by attaching the nodes in the root node of sub scene to the new scene instance. Please try the following help topic:
[C#]
Scene scene = new Scene(@"skybox.obj");
Scene subScene = new Scene(@"r2d2.obj");
//Merge the scene
foreach (var node in subScene.RootNode.ChildNodes.ToArray())
scene.RootNode.ChildNodes.Add(node);
//Save the merged scene
scene.Save("output.fbx", FileFormat.FBX7400ASCII);
PS: the ticket ID THREEDNET-301 has been closed.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.