mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Update materialDefinition.h
the values holding the channel selection were set to floats when they were expecting integer values.
This commit is contained in:
parent
3fd333d3a2
commit
f64c7ce7aa
1 changed files with 3 additions and 3 deletions
|
|
@ -223,10 +223,10 @@ public:
|
||||||
|
|
||||||
bool mDiffuseMapSRGB[MAX_STAGES]; // SRGB diffuse
|
bool mDiffuseMapSRGB[MAX_STAGES]; // SRGB diffuse
|
||||||
bool mIsSRGb[MAX_STAGES]; // SRGB ORM
|
bool mIsSRGb[MAX_STAGES]; // SRGB ORM
|
||||||
F32 mAOChan[MAX_STAGES];
|
U32 mAOChan[MAX_STAGES];
|
||||||
bool mInvertRoughness[MAX_STAGES];
|
bool mInvertRoughness[MAX_STAGES];
|
||||||
F32 mRoughnessChan[MAX_STAGES];
|
U32 mRoughnessChan[MAX_STAGES];
|
||||||
F32 mMetalChan[MAX_STAGES];
|
U32 mMetalChan[MAX_STAGES];
|
||||||
F32 mGlowMul[MAX_STAGES];
|
F32 mGlowMul[MAX_STAGES];
|
||||||
|
|
||||||
/// The strength scalar for the detail normal map.
|
/// The strength scalar for the detail normal map.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue