Ürünlerimize göz atın
Aspose.3D for .NET 20.10 lease elease Notes
Tonun sayfası Aspose.3D for .NET 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ı Aspose.ThreeD. sınıf ileFormat:
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;
Now, ASCII/Binary modunda sahneyi FBX 7.6/7,7 ‘ye ihraç edebilirsiniz.
Sample kodu:
Scene scene = new Scene(new Pyramid());
scene.Save("fbx7.7.fbx", FileFormat.FBX7700ASCII);
Ayeni sınıf Aspose.ThreeD.Formats. A3Daveaveaveaveptions
/// <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; }
}
The yeni A3DWaveaveaveptions, varlık bilgilerini ve özelliklerini A3DW dosyasına aktarmanıza izin verir.
This yeni gelen web renderer ile kullanılır.
Scene scene = new Scene();
scene.RootNode.CreateChildNode(new Pyramid()).SetProperty("rvm:No", "347923");
scene.Save("test.a3dw", new A3DWSaveOptions() { MetaDataPrefix = "rvm:" });