Blader door onze producten

Aspose.3D for Java 20.10 Mitteilung hinweise

Verbesserungen und Änderungen

SchlüsselZusammenfassungKategorie
THREEDNET-737Fügen Sie primitive Unterstützung in A3DW Export/Import hinzu.
THREEDNET-732Aspose.3D hat einen Textur fehler beim Erzeugen von GLTF, aber es gibt kein Problem, ihn als FBX zu speichern
THREEDNET-738Fügen Sie Farb tabellen unterstützung in der Datei RVM hinzu.
THREEDNET-739Unterstützung für 7.7/Binary/Autodesk FBX

API Änderungen

Neue Dateiformate zu class com. apose. threed.File Format hinzugefügt:

    /**
     * ASCII FBX file format, with 7.6.0 version
     */
    public static final FileFormat FBX7600ASCII;
    /**
     * Binary FBX file format, with 7.6.0 version
     */
    public static final FileFormat FBX7600_BINARY;
    /**
     * ASCII FBX file format, with 7.7.0 version
     */
    public static final FileFormat FBX7700ASCII;
    /**
     * Binary FBX file format, with 7.7.0 version
     */
    public static final FileFormat FBX7700_BINARY;

Jetzt können Sie die Szene in FBX 7.6/7.7 im ASCII/Binär modus exportieren.

Beispielcode:

    var scene = new Scene();
    scene.getRootNode().createChildNode(new Pyramid());
    scene.save("fbx7.7.fbx", FileFormat.FBX7700_BINARY);

Neue Klasse com. assose. threed.A3DWSaveOptions hinzugefügt

/**
 * Save options for A3DW format.
 */
public class A3DWSaveOptions extends SaveOptions
{    
    /**
     * Export meta data associated with Scene/Node to client
     * Default value is true
     */
    public boolean getExportMetaData();

    /**
     * Export meta data associated with Scene/Node to client
     * Default value is true
     * @param value New value
     */
    public void setExportMetaData(boolean value);

    /**
     * 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.
     */
    public String getMetaDataPrefix();

    /**
     * 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.
     * @param value New value
     */
    public void setMetaDataPrefix(String value);

    /**
     * Constructor of {@link com.aspose.threed.A3DWSaveOptions}
     */
    public A3DWSaveOptions();
}

Mit den neuen A3DWSaveOptions können Sie Asset-Informationen und-Eigenschaften in die Datei A3DW exportieren.

Dies wird mit unserem neuen eingehenden Web-Renderer verwendet.

    var scene = new Scene();
    scene.getRootNode().createChildNode(new Pyramid()).setProperty("rvm:No", "347923");
    var opt = new A3DWSaveOptions();
    opt.setMetaDataPrefix("rvm:");
    scene.save("test.a3dw", opt);


 
 Deutsch