Package com.aspose.threed
Class UsdSaveOptions
- java.lang.Object
-
- com.aspose.threed.IOConfig
-
- com.aspose.threed.SaveOptions
-
- com.aspose.threed.UsdSaveOptions
-
public class UsdSaveOptions extends SaveOptions
Save options for USD/USDZ formats.
-
-
Constructor Summary
Constructors Constructor Description UsdSaveOptions()
Initialize a newUsdSaveOptions
withFileFormat.USD
formatUsdSaveOptions(FileFormat fileFormat)
Initialize a newUsdSaveOptions
with specified USD/USDZ format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getExportMetaData()
Export node's properties through USD's customData field.boolean
getPrimitiveToMesh()
Convert the primitive entities to mesh during the export.void
setExportMetaData(boolean value)
Export node's properties through USD's customData field.void
setPrimitiveToMesh(boolean value)
Convert the primitive entities to mesh during the export.-
Methods inherited from class com.aspose.threed.IOConfig
getEncoding, getFileFormat, getFileName, getFileSystem, getFileSystemFactory, getLookupPaths, lookupForFile, setEncoding, setFileName, setFileSystem, setFileSystemFactory, setLookupPaths
-
-
-
-
Constructor Detail
-
UsdSaveOptions
public UsdSaveOptions()
Initialize a newUsdSaveOptions
withFileFormat.USD
format
-
UsdSaveOptions
public UsdSaveOptions(FileFormat fileFormat)
Initialize a newUsdSaveOptions
with specified USD/USDZ format.
-
-
Method Detail
-
getPrimitiveToMesh
public boolean getPrimitiveToMesh()
Convert the primitive entities to mesh during the export. Or directly encode the primitives to the output file(will use Aspose's extension definition for unofficial primitives like Dish, Torus) Default value is true.
-
setPrimitiveToMesh
public void setPrimitiveToMesh(boolean value)
Convert the primitive entities to mesh during the export. Or directly encode the primitives to the output file(will use Aspose's extension definition for unofficial primitives like Dish, Torus) Default value is true.- Parameters:
value
- New value
-
getExportMetaData
public boolean getExportMetaData()
Export node's properties through USD's customData field.
-
setExportMetaData
public void setExportMetaData(boolean value)
Export node's properties through USD's customData field.- Parameters:
value
- New value
-
-