Rotationorder FBX dosyasında özelleştirin

Contents
[ ]

İşte bunu Aspose ile nasıl halledebilirsiniz? 3D:

var rvm = Scene.FromFile(@"F1234.rvm");
rvm.RootNode.Accept((Node node) =>
{
    node.SetProperty("RotationOrder", 1); //set a custom property, exporter will match this to FBX's property.
    return true; //continue to traverse on other nodes 
});

rvm.Save(@"test.fbx");

Bu örnekte:

  1. RVM dosyasından bir sahne oluşturun.
  2. Olay yerindeki tüm düğümleri ziyaret edin.
  3. Set custom property: The SetProperty method is used to set the RotationOrder property, demonstrating how internal mechanisms can be leveraged to control format-specific features not directly exposed by the public API.
  4. Sahneyi kaydet: sahne özelleştirilmiş RotationOrder ile kaydedilir.

By using such techniques, Aspose.3D allows developers to fine-tune and control specific features of 3D formats, ensuring that detailed and precise requirements are met in various 3D applications.