TDME2 1.9.121
|
Represents specular material properties. More...
#include <tdme/engine/model/PBRMaterialProperties.h>
Public Member Functions | |
PBRMaterialProperties () | |
Public constructor. More... | |
~PBRMaterialProperties () | |
Destructor. More... | |
bool | hasEmbeddedTextures () const |
void | setEmbedTextures (bool embedTextures) |
Set if to embed textures. More... | |
const Color4 & | getBaseColorFactor () const |
void | setBaseColorFactor (const Color4 &baseColorFactor) |
Set base color factor. More... | |
const string & | getBaseColorTexturePathName () const |
const string & | getBaseColorTextureFileName () const |
void | setBaseColorTexture (Texture *baseColorTexture) |
Set up a base color texture by the texture itself. More... | |
void | setBaseColorTexture (const string &pathName, const string &fileName) |
Set up a base color texture. More... | |
bool | hasBaseColorTexture () const |
Texture * | getBaseColorTexture () const |
bool | hasBaseColorTextureTransparency () const |
void | setBaseColorTextureTransparency (bool transparency) |
Set if base color texture uses transparency. More... | |
bool | hasBaseColorTextureMaskedTransparency () const |
void | setBaseColorTextureMaskedTransparency (bool maskedTransparency) |
Set if base color texture uses masked transparency(means pixel are eighter opaque or not visible) More... | |
float | getBaseColorTextureMaskedTransparencyThreshold () const |
void | setBaseColorTextureMaskedTransparencyThreshold (float maskedTransparencyThreshold) |
Set base color texture masked transparency threshold. More... | |
float | getMetallicFactor () const |
void | setMetallicFactor (float metallicFactor) |
Set metallic factor. More... | |
float | getRoughnessFactor () const |
void | setRoughnessFactor (float roughnessFactor) |
Set roughness factor. More... | |
const string & | getMetallicRoughnessTexturePathName () const |
const string & | getMetallicRoughnessTextureFileName () const |
void | setMetallicRoughnessTexture (Texture *metallicRoughnessTexture) |
Set up a metallic roughness texture by the texture itself. More... | |
void | setMetallicRoughnessTexture (const string &pathName, const string &fileName) |
Set up a metallic roughness texture. More... | |
bool | hasMetallicRoughnessTexture () const |
Texture * | getMetallicRoughnessTexture () const |
float | getNormalScale () const |
void | setNormalScale (float normalScale) |
Set normal scale. More... | |
const string & | getNormalTexturePathName () const |
const string & | getNormalTextureFileName () const |
void | setNormalTexture (Texture *normalTexture) |
Set up a normal texture by the texture itself. More... | |
void | setNormalTexture (const string &pathName, const string &fileName) |
Set up a normal texture. More... | |
bool | hasNormalTexture () const |
Texture * | getNormalTexture () const |
float | getExposure () const |
void | setExposure (float exposure) |
Set exposure. More... | |
Private Member Functions | |
void | checkBaseColorTextureTransparency () |
Checks and set ups base color texture transparency. More... | |
Private Attributes | |
bool | embedTextures |
Color4 | baseColorFactor |
string | baseColorTexturePathName |
string | baseColorTextureFileName |
Texture * | baseColorTexture |
bool | baseColorTextureMaskedTransparency |
float | baseColorTextureMaskedTransparencyThreshold |
bool | baseColorTextureTransparency |
float | metallicFactor |
float | roughnessFactor |
string | metallicRoughnessTexturePathName |
string | metallicRoughnessTextureFileName |
Texture * | metallicRoughnessTexture |
float | normalScale |
string | normalTexturePathName |
string | normalTextureFileName |
Texture * | normalTexture |
float | exposure |
Represents specular material properties.
Definition at line 20 of file PBRMaterialProperties.h.
Public constructor.
Definition at line 17 of file PBRMaterialProperties.cpp.
Destructor.
Definition at line 33 of file PBRMaterialProperties.cpp.
|
private |
Checks and set ups base color texture transparency.
Definition at line 89 of file PBRMaterialProperties.cpp.
|
inline |
Definition at line 77 of file PBRMaterialProperties.h.
|
inline |
Definition at line 126 of file PBRMaterialProperties.h.
|
inline |
Definition at line 99 of file PBRMaterialProperties.h.
|
inline |
Definition at line 163 of file PBRMaterialProperties.h.
|
inline |
Definition at line 92 of file PBRMaterialProperties.h.
|
inline |
Definition at line 305 of file PBRMaterialProperties.h.
|
inline |
Definition at line 178 of file PBRMaterialProperties.h.
|
inline |
Definition at line 242 of file PBRMaterialProperties.h.
|
inline |
Definition at line 215 of file PBRMaterialProperties.h.
|
inline |
Definition at line 208 of file PBRMaterialProperties.h.
|
inline |
Definition at line 249 of file PBRMaterialProperties.h.
|
inline |
Definition at line 298 of file PBRMaterialProperties.h.
|
inline |
Definition at line 271 of file PBRMaterialProperties.h.
|
inline |
Definition at line 264 of file PBRMaterialProperties.h.
|
inline |
Definition at line 193 of file PBRMaterialProperties.h.
|
inline |
Definition at line 119 of file PBRMaterialProperties.h.
|
inline |
Definition at line 148 of file PBRMaterialProperties.h.
|
inline |
Definition at line 133 of file PBRMaterialProperties.h.
|
inline |
Definition at line 62 of file PBRMaterialProperties.h.
|
inline |
Definition at line 235 of file PBRMaterialProperties.h.
|
inline |
Definition at line 291 of file PBRMaterialProperties.h.
|
inline |
Set base color factor.
baseColorFactor | base color factor |
Definition at line 85 of file PBRMaterialProperties.h.
void setBaseColorTexture | ( | const string & | pathName, |
const string & | fileName | ||
) |
Set up a base color texture.
pathName | path name |
fileName | file name |
Definition at line 48 of file PBRMaterialProperties.cpp.
void setBaseColorTexture | ( | Texture * | baseColorTexture | ) |
Set up a base color texture by the texture itself.
baseColorTexture | base color texture |
Definition at line 39 of file PBRMaterialProperties.cpp.
|
inline |
Set if base color texture uses masked transparency(means pixel are eighter opaque or not visible)
maskedTransparency | masked transparency |
Definition at line 156 of file PBRMaterialProperties.h.
|
inline |
Set base color texture masked transparency threshold.
maskedTransparencyThreshold | diffuse texture masked transparency threshold |
Definition at line 171 of file PBRMaterialProperties.h.
|
inline |
Set if base color texture uses transparency.
transparency | transparency |
Definition at line 141 of file PBRMaterialProperties.h.
|
inline |
Set if to embed textures.
embedTextures | embed textures |
Definition at line 70 of file PBRMaterialProperties.h.
|
inline |
|
inline |
Set metallic factor.
metallicFactor | metallic factor |
Definition at line 186 of file PBRMaterialProperties.h.
void setMetallicRoughnessTexture | ( | const string & | pathName, |
const string & | fileName | ||
) |
Set up a metallic roughness texture.
pathName | path name |
fileName | file name |
Definition at line 65 of file PBRMaterialProperties.cpp.
void setMetallicRoughnessTexture | ( | Texture * | metallicRoughnessTexture | ) |
Set up a metallic roughness texture by the texture itself.
metallicRoughnessTexture | metallic roughness texture |
Definition at line 57 of file PBRMaterialProperties.cpp.
|
inline |
Set normal scale.
normalScale | normal scale |
Definition at line 257 of file PBRMaterialProperties.h.
void setNormalTexture | ( | const string & | pathName, |
const string & | fileName | ||
) |
Set up a normal texture.
pathName | path name |
fileName | file name |
Definition at line 81 of file PBRMaterialProperties.cpp.
void setNormalTexture | ( | Texture * | normalTexture | ) |
Set up a normal texture by the texture itself.
normalTexture | normal texture |
Definition at line 73 of file PBRMaterialProperties.cpp.
|
inline |
Set roughness factor.
roughnessFactor | roughness factor |
Definition at line 201 of file PBRMaterialProperties.h.
|
private |
Definition at line 25 of file PBRMaterialProperties.h.
|
private |
Definition at line 28 of file PBRMaterialProperties.h.
|
private |
Definition at line 27 of file PBRMaterialProperties.h.
|
private |
Definition at line 29 of file PBRMaterialProperties.h.
|
private |
Definition at line 30 of file PBRMaterialProperties.h.
|
private |
Definition at line 26 of file PBRMaterialProperties.h.
|
private |
Definition at line 31 of file PBRMaterialProperties.h.
|
private |
Definition at line 24 of file PBRMaterialProperties.h.
|
private |
Definition at line 41 of file PBRMaterialProperties.h.
|
private |
Definition at line 32 of file PBRMaterialProperties.h.
|
private |
Definition at line 36 of file PBRMaterialProperties.h.
|
private |
Definition at line 35 of file PBRMaterialProperties.h.
|
private |
Definition at line 34 of file PBRMaterialProperties.h.
|
private |
Definition at line 37 of file PBRMaterialProperties.h.
|
private |
Definition at line 40 of file PBRMaterialProperties.h.
|
private |
Definition at line 39 of file PBRMaterialProperties.h.
|
private |
Definition at line 38 of file PBRMaterialProperties.h.
|
private |
Definition at line 33 of file PBRMaterialProperties.h.