PbrMaterial
Contents
[
Hide
]PbrMaterial class
Material for physically based rendering based on albedo color/metallic/roughness
Methods
constructor
| Name | Description |
|---|---|
| constructor() | Construct a default PBR material instance |
Result:
constructor_overload
| Name | Description |
|---|---|
| constructor_overload(albedo) | Construct a default PBR material with specified albedo color value. |
Parameters:
| Name | Type | Description |
|---|---|---|
| albedo | Vector3 | The default albedo color value |
Result:
getTransparency
| Name | Description |
|---|---|
| getTransparency() | Gets or sets the transparency factor. The factor should be ranged between 0(0%, fully opaque) and 1(100%, fully transparent) Any invalid factor value will be clamped. The transparency factor. |
Result:
setTransparency
| Name | Description |
|---|---|
| setTransparency(value) | Gets or sets the transparency factor. The factor should be ranged between 0(0%, fully opaque) and 1(100%, fully transparent) Any invalid factor value will be clamped. The transparency factor. |
Result:
getNormalTexture
| Name | Description |
|---|---|
| getNormalTexture() | Gets or sets the texture of normal mapping |
Result:
setNormalTexture
| Name | Description |
|---|---|
| setNormalTexture(value) | Gets or sets the texture of normal mapping |
Result:
getSpecularTexture
| Name | Description |
|---|---|
| getSpecularTexture() | Gets or sets the texture for specular color |
Result:
setSpecularTexture
| Name | Description |
|---|---|
| setSpecularTexture(value) | Gets or sets the texture for specular color |
Result:
getAlbedoTexture
| Name | Description |
|---|---|
| getAlbedoTexture() | Gets or sets the texture for albedo |
Result:
setAlbedoTexture
| Name | Description |
|---|---|
| setAlbedoTexture(value) | Gets or sets the texture for albedo |
Result:
getAlbedo
| Name | Description |
|---|---|
| getAlbedo() | Gets or sets the base color of the material |
Result:
setAlbedo
| Name | Description |
|---|---|
| setAlbedo(value) | Gets or sets the base color of the material |
Result:
getOcclusionTexture
| Name | Description |
|---|---|
| getOcclusionTexture() | Gets or sets the texture for ambient occlusion |
Result:
setOcclusionTexture
| Name | Description |
|---|---|
| setOcclusionTexture(value) | Gets or sets the texture for ambient occlusion |
Result:
getOcclusionFactor
| Name | Description |
|---|---|
| getOcclusionFactor() | Gets or sets the factor of ambient occlusion |
Result:
setOcclusionFactor
| Name | Description |
|---|---|
| setOcclusionFactor(value) | Gets or sets the factor of ambient occlusion |
Result:
getMetallicFactor
| Name | Description |
|---|---|
| getMetallicFactor() | Gets or sets the metalness of the material, value of 1 means the material is a metal and value of 0 means the material is a dielectric. |
Result:
setMetallicFactor
| Name | Description |
|---|---|
| setMetallicFactor(value) | Gets or sets the metalness of the material, value of 1 means the material is a metal and value of 0 means the material is a dielectric. |
Result:
getRoughnessFactor
| Name | Description |
|---|---|
| getRoughnessFactor() | Gets or sets the roughness of the material, value of 1 means the material is completely rough and value of 0 means the material is completely smooth |
Result:
setRoughnessFactor
| Name | Description |
|---|---|
| setRoughnessFactor(value) | Gets or sets the roughness of the material, value of 1 means the material is completely rough and value of 0 means the material is completely smooth |
Result:
getMetallicRoughness
| Name | Description |
|---|---|
| getMetallicRoughness() | Gets or sets the texture for metallic(in R channel) and roughness(in G channel) |
Result:
setMetallicRoughness
| Name | Description |
|---|---|
| setMetallicRoughness(value) | Gets or sets the texture for metallic(in R channel) and roughness(in G channel) |
Result:
getEmissiveTexture
| Name | Description |
|---|---|
| getEmissiveTexture() | Gets or sets the texture for emissive |
Result:
setEmissiveTexture
| Name | Description |
|---|---|
| setEmissiveTexture(value) | Gets or sets the texture for emissive |
Result:
getEmissiveColor
| Name | Description |
|---|---|
| getEmissiveColor() | Gets or sets the emissive color |
Result:
setEmissiveColor
| Name | Description |
|---|---|
| setEmissiveColor(value) | Gets or sets the emissive color |
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:
fromMaterial
| Name | Description |
|---|---|
| fromMaterial(material) | Allow convert other material to PbrMaterial |
Parameters:
| Name | Type | Description |
|---|---|---|
| materia | Material | null |
Result: PbrMaterial
getTexture
| Name | Description |
|---|---|
| getTexture(slotName) | Gets the texture from the specified slot, it can be material’s property name or shader’s parameter name |
Parameters:
| Name | Type | Description |
|---|---|---|
| slotName | String | Slot name. |
Result: TextureBase
setTexture
| Name | Description |
|---|---|
| setTexture(slotName, texture) | Sets the texture to specified slot |
Parameters:
| Name | Type | Description |
|---|---|---|
| slotName | String | Slot name. |
| texture | TextureBase | Texture. |
Result: TextureBase
toString
| Name | Description |
|---|---|
| toString() | Formats object to string |
Result: String
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
iterator
| Name | Description |
|---|---|
| iterator() | Reserved for internal use. |
Result: Property