diff options
author | aap <aap@papnet.eu> | 2020-10-27 15:55:07 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-10-27 15:55:07 +0100 |
commit | 78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc (patch) | |
tree | 527d1c6df8744f16662d9fdf24be47dcd15584b1 /src/extras/custompipes.cpp | |
parent | OpenAL channels now use their own sound buffers (diff) | |
download | re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar.gz re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar.bz2 re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar.lz re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar.xz re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.tar.zst re3-78ac22ee2cfa12c1e8c93cca956f1aa1f93c76dc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/extras/custompipes.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/extras/custompipes.cpp b/src/extras/custompipes.cpp index 79254eb4..b545b4d8 100644 --- a/src/extras/custompipes.cpp +++ b/src/extras/custompipes.cpp @@ -365,6 +365,7 @@ AttachVehiclePipe(rw::Clump *clump) * Neo World pipe */ +bool LightmapEnable; float LightmapMult = 1.0f; InterpolatedFloat WorldLightmapBlend(1.0f); rw::ObjPipeline *worldPipe; @@ -389,6 +390,7 @@ AttachWorldPipe(rw::Clump *clump) * Neo Gloss pipe */ +bool GlossEnable; float GlossMult = 1.0f; rw::ObjPipeline *glossPipe; @@ -427,6 +429,7 @@ AttachGlossPipe(rw::Clump *clump) * Neo Rim pipes */ +bool RimlightEnable; float RimlightMult = 1.0f; InterpolatedColor RampStart(Color(0.0f, 0.0f, 0.0f, 1.0f)); InterpolatedColor RampEnd(Color(1.0f, 1.0f, 1.0f, 1.0f)); |