mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 08:15:44 +00:00
Terrain Macro Texture
Adds another layer of detail-like texture to the terrain and the interface updates in the Terrain Painter.
This commit is contained in:
parent
769268784f
commit
add2f8cb47
17 changed files with 2210 additions and 242 deletions
|
|
@ -66,6 +66,11 @@ protected:
|
|||
/// planes.
|
||||
bool mSideProjection;
|
||||
|
||||
FileName mMacroMap;
|
||||
F32 mMacroSize;
|
||||
F32 mMacroStrength;
|
||||
F32 mMacroDistance;
|
||||
|
||||
///
|
||||
F32 mParallaxScale;
|
||||
|
||||
|
|
@ -96,12 +101,20 @@ public:
|
|||
|
||||
const String& getDetailMap() const { return mDetailMap; }
|
||||
|
||||
const String& getMacroMap() const { return mMacroMap; }
|
||||
|
||||
F32 getDetailSize() const { return mDetailSize; }
|
||||
|
||||
F32 getDetailStrength() const { return mDetailStrength; }
|
||||
|
||||
F32 getDetailDistance() const { return mDetailDistance; }
|
||||
|
||||
F32 getMacroSize() const { return mMacroSize; }
|
||||
|
||||
F32 getMacroDistance() const { return mMacroDistance; }
|
||||
|
||||
F32 getMacroStrength() const { return mMacroStrength; }
|
||||
|
||||
bool useSideProjection() const { return mSideProjection; }
|
||||
|
||||
F32 getParallaxScale() const { return mParallaxScale; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue