The aerial fog settings.
| 25 | |
| 26 | /// The aerial fog settings. |
| 27 | struct FogData |
| 28 | { |
| 29 | F32 density; |
| 30 | F32 densityOffset; |
| 31 | F32 atmosphereHeight; |
| 32 | LinearColorF color; |
| 33 | |
| 34 | FogData() |
| 35 | { |
| 36 | density = 0.0f; |
| 37 | densityOffset = 0.0f; |
| 38 | atmosphereHeight = 0.0f; |
| 39 | color.set( 0.5f, 0.5f, 0.5f, 1.0f ); |
| 40 | } |
| 41 | }; |
| 42 | |
| 43 | |
| 44 | /// The water fog settings. |
no outgoing calls
no test coverage detected