world texture v1
@ -1,6 +1,6 @@
|
||||
<material>
|
||||
<technique name="Techniques/Cloud.xml" quality="0" />
|
||||
<texture unit="diffuse" name="Textures/Enviroment/Clouds.dds" />
|
||||
<texture unit="diffuse" name="Textures/Enviroment/Clouds.png" />
|
||||
<parameter name="MatSpecColor" value="0 0 0 1" />
|
||||
<parameter name="MatDiffColor" value="1 1 1 0.6" />
|
||||
<parameter name="MatDiffColor" value="1 1 1 0.5" />
|
||||
</material>
|
@ -1,15 +1,15 @@
|
||||
<material>
|
||||
<technique name="Techniques/TownforgeTerrainLowQuality.xml" loddistance="2500" />
|
||||
<technique name="Techniques/TownforgeTerrain.xml" loddistance="0" />
|
||||
<texture unit="1" name="Textures/aerial_ground_rock_diff_2k-tiling.dds" />
|
||||
<texture unit="2" name="Textures/stone063.dds" />
|
||||
<texture unit="3" name="Textures/Grass-0467-tiling2k.dds" />
|
||||
<texture unit="4" name="Textures/snowy-grass-texturelib.dds" />
|
||||
<texture unit="1" name="Textures/Enviroment/W_Pebbleground.dds" />
|
||||
<texture unit="2" name="Textures/Enviroment/W_RockMountain.dds" />
|
||||
<texture unit="3" name="Textures/Enviroment/W_Grass.dds" />
|
||||
<texture unit="4" name="Textures/Enviroment/W_Snowgrass.dds" />
|
||||
<texture unit="5" />
|
||||
<texture unit="6" name="Textures/pure-white-snow-surface-final-blurred.dds" />
|
||||
<texture unit="6" name="Textures/Enviroment/W_Whitesnow.dds" />
|
||||
|
||||
<parameter name="MatSpecColor" value="0.25 0.25 0.25 16" />
|
||||
<parameter name="DetailTiling" value="4 4" />
|
||||
<parameter name="MatSpecColor" value="0.0 0.0 0.0 1" />
|
||||
<parameter name="DetailTiling" value="1 1" />
|
||||
<parameter name="Temperature" value="0.0" />
|
||||
<parameter name="SnowinessMinTemperature" value="-10.0" />
|
||||
<parameter name="SnowinessMaxTemperature" value="2.0" />
|
||||
|
@ -164,11 +164,11 @@ void PS()
|
||||
#ifdef NOSNOW
|
||||
weights.r * texture2D(sDetailMap1, vDetailTexCoord) +
|
||||
#else
|
||||
weights.r * texture2D(sDetailMap1, vDetailTexCoord) * (1.0 - snowiness) +
|
||||
weights.r * texture2D(sDetailMap4, vDetailTexCoord) * snowiness +
|
||||
weights.r * texture2D(sDetailMap1, vDetailTexCoord * 16) * (1.0 - snowiness) +
|
||||
weights.r * texture2D(sDetailMap4, vDetailTexCoord * 16) * snowiness +
|
||||
#endif
|
||||
weights.g * texture2D(sDetailMap2, vDetailTexCoord) +
|
||||
weights.b * texture2D(sDetailMap3, vDetailTexCoord)
|
||||
weights.g * texture2D(sDetailMap2, vDetailTexCoord * 4) +
|
||||
weights.b * texture2D(sDetailMap3, vDetailTexCoord * 16)
|
||||
);
|
||||
|
||||
// Get material specular albedo
|
||||
@ -183,7 +183,7 @@ void PS()
|
||||
|
||||
#ifndef NOSNOW
|
||||
#ifdef SNOWTEXTURE
|
||||
vec4 snowColor = texture2D(sSnowMap6, vTexCoord * 2) * cSnowDarkening;
|
||||
vec4 snowColor = texture2D(sSnowMap6, vTexCoord) * cSnowDarkening;
|
||||
#endif
|
||||
diffColor = diffColor * (1.0 - snow_depth) + snowColor * snow_depth * cSnowDarkening;
|
||||
#endif
|
||||
|
BIN
GameData/Textures/Enviroment/Clouds.png
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
GameData/Textures/Enviroment/W_Grass.dds
Normal file
BIN
GameData/Textures/Enviroment/W_Pebbleground.dds
Normal file
BIN
GameData/Textures/Enviroment/W_RockMountain.dds
Normal file
BIN
GameData/Textures/Enviroment/W_Snowgrass.dds
Normal file
BIN
GameData/Textures/Enviroment/W_Whitesnow.dds
Normal file
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 538 KiB |
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 400 KiB |
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.2 MiB |
@ -2589,7 +2589,7 @@ void CryptoCityUrho3D::UpdateSky()
|
||||
Color LIGHT_AMBIENT(0.3, 0.34, 0.41, 1);
|
||||
LIGHT_AMBIENT = Lerp(LIGHT_AMBIENT, LIGHT_AMBIENT * 0.8f, snowfall.GetStrength());
|
||||
Color EVENING_AMBIENT_INFLUENCE(.8, .3, .3, 1);
|
||||
Color EVENING_CLOUDS_AMBIENT(0.95, 0.3, 0.2, 1);
|
||||
Color EVENING_CLOUDS_AMBIENT(0.95, 0.15, 0.1, 1);
|
||||
|
||||
// Color DARK_SUN(0.0, 0.0, 0.0);
|
||||
// Color LIGHT_SUN(1.1, 1.1, 1.1);
|
||||
@ -2732,7 +2732,7 @@ void CryptoCityUrho3D::UpdateSky()
|
||||
cloudsLightPosition.y_ -= 1000;
|
||||
cloudsLightNode_->SetPosition(cloudsLightPosition);
|
||||
cloudsLight->SetColor(cloudsColor);
|
||||
float cloudsInterp = std::max(0.07f, std::min(1.0f, (sin_timeOfDay + .1f) * 6));
|
||||
float cloudsInterp = std::max(0.1f, std::min(1.0f, (sin_timeOfDay + .1f) * 6));
|
||||
Color cloudsAmbient = Color::BLACK.Lerp(Color::WHITE, cloudsInterp);
|
||||
cloudsZone->SetAmbientColor(cloudsAmbient);
|
||||
|
||||
|