Ürünlerimize göz atın
Aspose.3D for Java 20.10 lease elease Notes
Tonun sayfası Aspose.3D for Java 20.10 için sürüm notları bilgilerini içerir.
Improvements ve Changes
Key | Summary | Category |
---|---|---|
THREEDNET-737 | Add İlkel destek A3DW ihracat/ithalat. | |
THREEDNET-732 | Aspose.3D GLTF üretirken bir doku hatasına sahiptir, ancak FBX olarak kaydetme sorunu yoktur. | |
THREEDNET-738 | RVM dosyasında Add renk tablosu desteği. | |
THREEDNET-739 | 7.7/Binary/Adesk desk FBX için Support |
API değişiklikleri
Ayeni dosya formatlarını com.aspose.threed. Fileiormat:
/**
* 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;
Now, ASCII/Binary modunda sahneyi FBX 7.6/7,7 ‘ye ihraç edebilirsiniz.
Sample kodu:
var scene = new Scene();
scene.getRootNode().createChildNode(new Pyramid());
scene.save("fbx7.7.fbx", FileFormat.FBX7700_BINARY);
Added yeni sınıf com.aspose.threed. A3Daveaveaveaveptions
/**
* 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();
}
The yeni A3DWaveaveaveptions, varlık bilgilerini ve özelliklerini A3DW dosyasına aktarmanıza izin verir.
This yeni gelen web renderer ile kullanılır.
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);