ImageRenderOptions
Contents
[
Hide
]ImageRenderOptions class
Options for Scene.render(com.aspose.threed.Camera, java.lang.String, com.aspose.threed.Vector2, java.lang.String, com.aspose.threed.ImageRenderOptions) and Scene.render(com.aspose.threed.Camera, com.aspose.threed.TextureData, com.aspose.threed.ImageRenderOptions)
Methods
constructor
| Name | Description |
|---|---|
| constructor() | Initialize an instance of ImageRenderOptions |
Result:
getBackgroundColor
| Name | Description |
|---|---|
| getBackgroundColor() | The background color of the render result. |
Result:
setBackgroundColor
| Name | Description |
|---|---|
| setBackgroundColor(value) | The background color of the render result. |
Result:
getAssetDirectories
| Name | Description |
|---|---|
| getAssetDirectories() | Directories that stored external assets(like textures) |
Result:
getEnableShadows
| Name | Description |
|---|---|
| getEnableShadows() | Gets or sets whether to render shadows. |
Result:
setEnableShadows
| Name | Description |
|---|---|
| setEnableShadows(value) | Gets or sets whether to render shadows. |
Result:
getName
| Name | Description |
|---|---|
| getName() | Gets or sets the name. The name. |
Result:
setName
| Name | Description |
|---|---|
| setName(value) | Gets or sets the name. The name. |
Result:
getProperties
| Name | Description |
|---|---|
| getProperties() | Gets the collection of all properties. |
Result:
removeProperty
| Name | Description |
|---|---|
| removeProperty(property) | Removes a dynamic property. |
Parameters:
| Name | Type | Description |
|---|---|---|
| property | Property | Which property to remove |
Result: boolean
removeProperty
| Name | Description |
|---|---|
| removeProperty(property) | Remove the specified property identified by name |
Parameters:
| Name | Type | Description |
|---|---|---|
| propert | String | null |
Result: boolean
getProperty
| Name | Description |
|---|---|
| getProperty(property) | Get the value of specified property |
Parameters:
| Name | Type | Description |
|---|---|---|
| property | String | Property name |
Result: Object
setProperty
| Name | Description |
|---|---|
| setProperty(property, value) | Sets the value of specified property |
Parameters:
| Name | Type | Description |
|---|---|---|
| property | String | Property name |
| value | Object | The value of the property |
Result: Object
findProperty
| Name | Description |
|---|---|
| findProperty(propertyName) | Finds the property. It can be a dynamic property (Created by CreateDynamicProperty/SetProperty) or native property(Identified by its name) |
Parameters:
| Name | Type | Description |
|---|---|---|
| propertyName | String | Property name. |
Result: Property