Browse our Products

Aspose.3D for .NET 20.10 Notes de Libération

Améliorations et changements

CléRésuméCatégorie
THREEDNET-737Ajouter un support primitif dans l’exportation/importation A3DW.
THREEDNET-732Aspose.3D a une erreur de texture lors de la génération de GLTF, mais il n’y a aucun problème à l’enregistrer comme FBX
THREEDNET-738Ajouter le support de table de couleur dans le fichier RVM.
THREEDNET-739Support pour 7.7/Binary/Autodesk FBX

API changements

Ajout de nouveaux formats de fichiers à la classe Aspose.ThreeD.FileFormat:

    public static readonly Aspose.ThreeD.FileFormat FBX7600ASCII;
    public static readonly Aspose.ThreeD.FileFormat FBX7600Binary;
    public static readonly Aspose.ThreeD.FileFormat FBX7700ASCII;
    public static readonly Aspose.ThreeD.FileFormat FBX7700Binary;

Maintenant, vous pouvez exporter la scène au FBX 7.6/7.7 en ASCII/Mode binaire.

Code d’échantillon:

    Scene scene = new Scene(new Pyramid());
    scene.Save("fbx7.7.fbx", FileFormat.FBX7700ASCII);

Ajouté nouvelle classe Aspose.ThreeD.Formats.A3DWSaveOptions

    /// <summary>
    /// Save options for A3DW format.
    /// </summary>
    public class A3DWSaveOptions : SaveOptions
    {
        /// <summary>
        /// Export meta data associated with Scene/Node to client
        /// Default value is true
        /// </summary>
        public bool ExportMetaData { get; set; }

        /// <summary>
        /// If this property is non-null, only the properties of Scene/Node that start with this prefix will be exported, and the prefix will be removed.
        /// </summary>
        public string MetaDataPrefix { get; set; }
    }

Le nouvel A3DWSaveOptions vous permet d’exporter les informations sur les actifs et les propriétés vers le fichier A3DW.

Ceci est utilisé avec notre nouveau moteur de rendu Web entrant.

    Scene scene = new Scene();
    scene.RootNode.CreateChildNode(new Pyramid()).SetProperty("rvm:No", "347923");
    scene.Save("test.a3dw", new A3DWSaveOptions() { MetaDataPrefix = "rvm:" });


 
 Français