diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index 3b1c1e467..11d3f7ab7 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -30,6 +30,8 @@ include(Versions) include(UnixInstall) +set (GCC_DISABLE_FATAL_WARNINGS TRUE) + if (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE ReleaseSSE2 CACHE STRING "Build type. One of: Debug Release ReleaseSSE2 RelWithDebInfo" FORCE) diff --git a/indra/lscript/lscript_library/lscript_library.cpp b/indra/lscript/lscript_library/lscript_library.cpp index ffbb91340..919fb758c 100644 --- a/indra/lscript/lscript_library/lscript_library.cpp +++ b/indra/lscript/lscript_library/lscript_library.cpp @@ -462,29 +462,35 @@ void LLScriptLibrary::init() addFunction(10.f, 0.f, dummy_func, "llGetLinkNumberOfSides", "i", "i"); // IDEVO Name lookup calls, see lscript_avatar_names.h - addFunction(10.f, 0.f, dummy_func, "llGetUsername", "s", "k"); - addFunction(10.f, 0.f, dummy_func, "llRequestUsername", "k", "k"); - addFunction(10.f, 0.f, dummy_func, "llGetDisplayName", "s", "k"); + addFunction(10.f, 0.f, dummy_func, "llGetUsername", "s", "k"); + addFunction(10.f, 0.f, dummy_func, "llRequestUsername", "k", "k"); + addFunction(10.f, 0.f, dummy_func, "llGetDisplayName", "s", "k"); addFunction(10.f, 0.f, dummy_func, "llRequestDisplayName", "k", "k"); - addFunction(10.f, 0.f, dummy_func, "llGetEnv", "s", "s"); addFunction(10.f, 0.f, dummy_func, "llRegionSayTo", NULL, "kis"); // Adding missing (more recent) LSL functions. - addFunction(10.f, 0.f, dummy_func, "llCastRay", "l", "vvl"); - addFunction(10.f, 0.f, dummy_func, "llGetSPMaxMemory", "i", NULL); - addFunction(10.f, 0.f, dummy_func, "llGetUsedMemory", "i", NULL); - addFunction(10.f, 0.f, dummy_func, "llGodLikeRezObject", NULL, "kv"); - addFunction(10.f, 0.f, dummy_func, "llScriptProfiler", NULL, "i"); - addFunction(10.f, 0.f, dummy_func, "llSetInventoryPermMask", NULL, "sii"); - addFunction(10.f, 0.f, dummy_func, "llSetObjectPermMask", NULL, "ii"); - - // energy, sleep, dummy_func, name, return type, parameters, help text, gods-only - - // IF YOU ADD NEW SCRIPT CALLS, YOU MUST PUT THEM AT THE END OF THIS LIST. - // Otherwise the bytecode numbers for each call will be wrong, and all - // existing scripts will crash. + addFunction(10.f, 0.f, dummy_func, "llCastRay", "l", "vvl"); + addFunction(10.f, 0.f, dummy_func, "llGetSPMaxMemory", "i", NULL); + addFunction(10.f, 0.f, dummy_func, "llGetUsedMemory", "i", NULL); + addFunction(10.f, 0.f, dummy_func, "llGodLikeRezObject", NULL, "kv"); + addFunction(10.f, 0.f, dummy_func, "llScriptProfiler", NULL, "i"); + addFunction(10.f, 0.f, dummy_func, "llSetInventoryPermMask", NULL, "sii"); + addFunction(10.f, 0.f, dummy_func, "llSetObjectPermMask", NULL, "ii"); + // Even more recent + addFunction(10.f, 0.f, dummy_func, "llSetMemoryLimit", "i", "i"); + addFunction(10.f, 0.f, dummy_func, "llSetLinkMedia", "i", "iil"); + addFunction(10.f, 0.f, dummy_func, "llGetLinkMedia", "l", "iil"); + addFunction(10.f, 0.f, dummy_func, "llClearLinkMedia", "i", "ii"); + addFunction(10.f, 0.f, dummy_func, "llSetLinkCamera", NULL, "ivv"); + addFunction(10.f, 0.f, dummy_func, "llSetContentType", NULL, "ki"); + addFunction(10.f, 0.f, dummy_func, "llLinkSitTarget", NULL, "ivr"); + addFunction(10.f, 0.f, dummy_func, "llAvatarOnLinkSitTarget", "k", "i"); + /* No info on these new functions yet.... + * addFunction(10.f, 0.f, dummy_func, "llSetVelocity", "", ""); + * addFunction(10.f, 0.f, dummy_func, "llSetRotationalVelocity", "", ""); + */ // REGARDING OSSL FUNCTIONS // These additions should be posted underneath the llFunctions @@ -496,6 +502,8 @@ void LLScriptLibrary::init() // OSSL corrections and syntax additions added + set in same order as found in OSSL_stub.cs of OpenSim Source (Updated PM October-21-2010 // based on OpenSimulator Ver. 0.7.x DEV/Master Git # a7acb650d400a280a7b9edabd304376dff9c81af - a7acb65-r/14142 // Updates by WhiteStar Magic + + // It should be noted though, that the order of OSSL functions is not important for correct functionality. addFunction(10.f, 0.f, dummy_func, "osSetRegionWaterHeight", NULL, "f"); addFunction(10.f, 0.f, dummy_func, "osSetRegionSunSettings", NULL, "iif"); @@ -583,12 +591,15 @@ void LLScriptLibrary::init() addFunction(10.f, 0.f, dummy_func, "osUnixTimeToTimestamp", "s", "i"); addFunction(10.f, 0.f, dummy_func, "osSetPenColor", NULL, "ss"); addFunction(10.f, 0.f, dummy_func, "osGetSunParam","f", "s"); - addFunction(10.f, 0.f, dummy_func, "osSetSunParam", "sf", NULL); + addFunction(10.f, 0.f, dummy_func, "osSetSunParam", NULL, "sf"); addFunction(10.f, 0.f, dummy_func, "osSetParcelDetails", NULL, "vl"); addFunction(10.f, 0.f, dummy_func, "osGetTerrainHeight", "f", "ii"); addFunction(10.f, 0.f, dummy_func, "osSetTerrainHeight", NULL, "iif"); addFunction(10.f, 0.f, dummy_func, "osGetAvatarList", "l", NULL); addFunction(10.f, 0.f, dummy_func, "osTeleportOwner", NULL, "svv"); + addFunction(10.f, 0.f, dummy_func, "osGetWindParam","f", "ss"); + addFunction(10.f, 0.f, dummy_func, "osSetWindParam", NULL, "ssf"); + // LightShare functions addFunction(10.f, 0.f, dummy_func, "cmSetWindlightScene", "i", "l"); @@ -599,6 +610,20 @@ void LLScriptLibrary::init() addFunction(10.f, 0.f, dummy_func, "lsSetWindlightScene", "i", "l"); addFunction(10.f, 0.f, dummy_func, "lsSetWindlightSceneTargeted", "i", "lk"); addFunction(10.f, 0.f, dummy_func, "lsGetWindlightScene", "l", "l"); + + // New OSSL functions 08-10-2011 + addFunction(10.f, 0.f, dummy_func, "osNpcSaveAppearance", "k", "ks"); + addFunction(10.f, 0.f, dummy_func, "osNpcLoadAppearance", NULL, "ks"); + addFunction(10.f, 0.f, dummy_func, "osNpcMoveToTarget", NULL, "kvi"); + addFunction(10.f, 0.f, dummy_func, "osOwnerSaveAppearance", "k", "s"); + + // More new stuffs + addFunction(10.f, 0.f, dummy_func, "osNpcGetRot", "r", "k"); + addFunction(10.f, 0.f, dummy_func, "osNpcSetRot", NULL, "kr"); + addFunction(10.f, 0.f, dummy_func, "osAgentSaveAppearance", "k", "ks"); + addFunction(10.f, 0.f, dummy_func, "osNpcGetPos", "v", "k"); + addFunction(10.f, 0.f, dummy_func, "osNpcStopMoveToTarget", NULL, "k"); + } LLScriptLibraryFunction::LLScriptLibraryFunction(F32 eu, F32 st, void (*exec_func)(LLScriptLibData *, LLScriptLibData *, const LLUUID &), const char *name, const char *ret_type, const char *args, BOOL god_only) diff --git a/indra/newview/app_settings/windlight/days/Colder%20Tones.xml b/indra/newview/app_settings/windlight/days/Colder%20Tones.xml new file mode 100644 index 000000000..63d0b099e --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Colder%20Tones.xml @@ -0,0 +1,28 @@ + + + + 0 + Midnight + + + 0.24999989569187164 + Purple + + + 0.49999979138374329 + Blue Midday + + + 0.74999970197677612 + Blizzard + + + 0.87499958276748657 + Ghost + + + 0.99999958276748657 + Midnight + + + diff --git a/indra/newview/app_settings/windlight/days/Dynamic%20Richness.xml b/indra/newview/app_settings/windlight/days/Dynamic%20Richness.xml new file mode 100644 index 000000000..f75b52e6e --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Dynamic%20Richness.xml @@ -0,0 +1,32 @@ + + + + 0 + Night + + + 0.12499994784593582 + Blizzard + + + 0.24999989569187164 + Sunrise + + + 0.49999979138374329 + Midday 3 + + + 0.68749970197677612 + Pirate + + + 0.81249970197677612 + Coastal Sunset + + + 0.99999958276748657 + Midnight + + + diff --git a/indra/newview/app_settings/windlight/days/Pirate%27s%20Dream.xml b/indra/newview/app_settings/windlight/days/Pirate%27s%20Dream.xml new file mode 100644 index 000000000..6dc1ba9f4 --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Pirate%27s%20Dream.xml @@ -0,0 +1,44 @@ + + + + 0 + A-12AM + + + 0.12499994784593582 + A-3AM + + + 0.22222213447093964 + Barcelona + + + 0.30208322405815125 + Sunrise + + + 0.37499985098838806 + Sailor's Delight + + + 0.53819423913955688 + Coastal Afternoon + + + 0.63194417953491211 + Pirate + + + 0.7048608660697937 + Desert Sunset + + + 0.74999970197677612 + Coastal Sunset + + + 0.87499958276748657 + Blizzard + + + diff --git a/indra/newview/app_settings/windlight/days/Psycho%20Strobe%21.xml b/indra/newview/app_settings/windlight/days/Psycho%20Strobe%21.xml new file mode 100644 index 000000000..302af5a9b --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Psycho%20Strobe%21.xml @@ -0,0 +1,72 @@ + + + + 0 + Sheer Surreality + + + 0.062499973922967911 + A-12AM + + + 0.12499994784593582 + Sheer Surreality + + + 0.18749992549419403 + A-3AM + + + 0.24999989569187164 + Sheer Surreality + + + 0.31249985098838806 + A-6AM + + + 0.37499985098838806 + Sheer Surreality + + + 0.43749979138374329 + A-9AM + + + 0.49999979138374329 + Sheer Surreality + + + 0.5624997615814209 + A-12PM + + + 0.62499970197677612 + Sheer Surreality + + + 0.68749970197677612 + A-3PM + + + 0.74999970197677612 + Sheer Surreality + + + 0.81249970197677612 + A-6PM + + + 0.87499958276748657 + Sheer Surreality + + + 0.93749958276748657 + A-9PM + + + 0.99999958276748657 + Sheer Surreality + + + diff --git a/indra/newview/app_settings/windlight/days/Tropicalia.xml b/indra/newview/app_settings/windlight/days/Tropicalia.xml new file mode 100644 index 000000000..89a56d4a1 --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Tropicalia.xml @@ -0,0 +1,32 @@ + + + + 0.062499973922967911 + Purple + + + 0.16666659712791443 + Funky Funky + + + 0.31249985098838806 + Sunrise + + + 0.49999979138374329 + Fine Day + + + 0.66666638851165771 + Desert Sunset + + + 0.74999970197677612 + Sailor's Delight + + + 0.95833295583724976 + Midnight + + + diff --git a/indra/newview/app_settings/windlight/days/Weird-O.xml b/indra/newview/app_settings/windlight/days/Weird-O.xml new file mode 100644 index 000000000..1e312f246 --- /dev/null +++ b/indra/newview/app_settings/windlight/days/Weird-O.xml @@ -0,0 +1,56 @@ + + + + 0 + Funky Funky + + + 0.13194438815116882 + Funky Funky Funky + + + 0.26041656732559204 + Gelatto + + + 0.40624985098838806 + Funky Funky Funky + + + 0.43749979138374329 + Ghost + + + 0.46874979138374329 + Gelatto + + + 0.5486108660697937 + Sheer Surreality + + + 0.6076386570930481 + Gelatto + + + 0.68055528402328491 + Ghost + + + 0.75694411993026733 + Sheer Surreality + + + 0.87847185134887695 + Gelatto + + + 0.91319411993026733 + Funky Funky Funky + + + 0.96527737379074097 + Funky Funky Funky + + + diff --git a/indra/newview/app_settings/windlight/skies/B5%2DShadowDancing.xml b/indra/newview/app_settings/windlight/skies/B5%2DShadowDancing.xml new file mode 100644 index 000000000..a1a8f026d --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/B5%2DShadowDancing.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.26999998092651367 + 0.26999998092651367 + 0.26999998092651367 + 0.08999999612569809 + + blue_density + + 0.37999999523162842 + 0.37999999523162842 + 0.37999999523162842 + 0.18999999761581421 + + blue_horizon + + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + 0.34999999403953552 + + cloud_color + + 0 + 0 + 0 + 0 + + cloud_pos_density1 + + 0.2800000011920929 + 0.59999996423721313 + 1 + 1 + + cloud_pos_density2 + + 0 + 0 + 0 + 1 + + cloud_scale + + 0.2199999988079071 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.069999776780605 + 9.9299997761845589 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.00039999998989515007 + 0 + 0 + 1 + + distance_multiplier + + 8.6000003814697266 + 0 + 0 + 1 + + east_angle + 2.7017695903778076 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.5099999904632568 + 0 + 0 + 1 + + glow + + 13.600001335144043 + 0.0010000000474974513 + -0.39999997615814209 + 1 + + haze_density + + 0.81999999284744263 + 0 + 0 + 1 + + haze_horizon + + 0.59999996423721313 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.42413315176963806 + 0.087851203978061676 + -0.90132862329483032 + 0 + + max_y + + 2562 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0.74000000953674316 + sun_angle + 0.087964601814746857 + sunlight_color + + 1.1999999284744263 + 1.1999999284744263 + 1.1999999284744263 + 0.39999997615814209 + + + diff --git a/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Annas%20Many%20Murders.xml b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Annas%20Many%20Murders.xml new file mode 100644 index 000000000..f585ddb6d --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Annas%20Many%20Murders.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.08999999612569809 + 0 + 0.070000000298023224 + + blue_density + + 0.17999999225139618 + 0.19999998807907104 + 0.14000000059604645 + 0.2199999988079071 + + blue_horizon + + 0.29999998211860657 + 0.17999999225139618 + 0.19999998807907104 + 0.29999998211860657 + + cloud_color + + 0.61000001430511475 + 0.53999996185302734 + 0.56000000238418579 + 0.61000001430511475 + + cloud_pos_density1 + + 0.44999998807907104 + 0.55000001192092896 + 0.059999998658895493 + 1 + + cloud_pos_density2 + + 0.53999996185302734 + 0.47999998927116394 + 0.039999999105930328 + 1 + + cloud_scale + + 0.18000000715255737 + 0 + 0 + 1 + + cloud_scroll_rate + + 12.989999771118164 + 10.510000228881836 + + cloud_shadow + + 0.63999998569488525 + 0 + 0 + 1 + + density_multiplier + + 0.00020999999833293259 + 0 + 0 + 1 + + distance_multiplier + + 23 + 0 + 0 + 1 + + east_angle + 2.0106194019317627 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.74000000953674316 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + -0 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.17000000178813934 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.90482699871063232 + 1.7484555314695172e-007 + -0.42577937245368958 + 0 + + max_y + + 322 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 6.2831854820251465 + sunlight_color + + 0.65999996662139893 + 0.53999996185302734 + 0.59999996423721313 + 0.65999996662139893 + + + diff --git a/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20BLUNIVERSE.xml b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20BLUNIVERSE.xml new file mode 100644 index 000000000..8c2082e43 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20BLUNIVERSE.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0 + 0.14999999105930328 + 0.14999999105930328 + + blue_density + + 0 + 0.37999999523162842 + 0.56000000238418579 + 0.56000000238418579 + + blue_horizon + + 0.45999997854232788 + 0.37999999523162842 + 0.57999998331069946 + 0.57999998331069946 + + cloud_color + + 0.11999999731779099 + 0.10999999940395355 + 0.11999999731779099 + 0.11999999731779099 + + cloud_pos_density1 + + 0.69999998807907104 + 0.34999999403953552 + 0.79999995231628418 + 1 + + cloud_pos_density2 + + 0.29999998211860657 + 0.17000000178813934 + 0.17000000178813934 + 1 + + cloud_scale + + 0.39999997615814209 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.359999656677246 + 10.029999732971191 + + cloud_shadow + + 0.29999998211860657 + 0 + 0 + 1 + + density_multiplier + + 9.9999997473787516e-005 + 0 + 0 + 1 + + distance_multiplier + + 37.200000762939453 + 0 + 0 + 1 + + east_angle + 1.1938052177429199 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.0099999904632568 + 0 + 0 + 1 + + glow + + 3.8000011444091797 + 0.0010000000474974513 + -1.5999999046325684 + 1 + + haze_density + + 1.2699999809265137 + 0 + 0 + 1 + + haze_horizon + + 0.35999998450279236 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.76900023221969604 + 0.56208312511444092 + -0.30446872115135193 + 0 + + max_y + + 349 + 0 + 0 + 1 + + preset_num + 24 + star_brightness + 2 + sun_angle + 2.5446903705596924 + sunlight_color + + 1.4099999666213989 + 1.6500000953674316 + 2.0399999618530273 + 2.0399999618530273 + + + diff --git a/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Immersiva%20Grey%20Dust.xml b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Immersiva%20Grey%20Dust.xml new file mode 100644 index 000000000..2a07b39d0 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Immersiva%20Grey%20Dust.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.32999998331069946 + 0.23999999463558197 + 0.029999999329447746 + 0.32999998331069946 + + blue_density + + 0.15999999642372131 + 0.15999999642372131 + 0.47999998927116394 + 0.47999998927116394 + + blue_horizon + + 0.19999998807907104 + 0.19999998807907104 + 0.43999999761581421 + 0.43999999761581421 + + cloud_color + + 0.48999997973442078 + 0.50999999046325684 + 0.64999997615814209 + 0.64999997615814209 + + cloud_pos_density1 + + 0.48999997973442078 + 0.50999999046325684 + 0.2199999988079071 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.039999999105930328 + 1 + + cloud_scale + + 0.11999999731779099 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.659999847412109 + 20 + + cloud_shadow + + 0.70999997854232788 + 0 + 0 + 1 + + density_multiplier + + 0.00018999999156221747 + 0 + 0 + 1 + + distance_multiplier + + 24.30000114440918 + 0 + 0 + 1 + + east_angle + 2.3876104354858398 + enable_cloud_scroll + + 1 + 0 + + gamma + + 0.94999998807907104 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + -0.29999998211860657 + 1 + + haze_density + + 3.7799999713897705 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.64833343029022217 + 0.32094338536262512 + 0.69040501117706299 + 0 + + max_y + + 376 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 2.8148672580718994 + sunlight_color + + 0.75 + 0.71999996900558472 + 0.77999997138977051 + 0.77999997138977051 + + + diff --git a/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Mayfly.xml b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Mayfly.xml new file mode 100644 index 000000000..272d1e041 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Bryn%20Oh%27s%20Mayfly.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.23999999463558197 + 0.32999998331069946 + 0.10999999940395355 + + blue_density + + 0.15999999642372131 + 0.43999999761581421 + 0.89999997615814209 + 0.89999997615814209 + + blue_horizon + + 0 + 0 + 0.059999998658895493 + 0.029999999329447746 + + cloud_color + + 0.29999998211860657 + 0.31999999284744263 + 0.22999998927116394 + 0.31999999284744263 + + cloud_pos_density1 + + 0.98999994993209839 + 1 + 1 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.15000000596046448 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.359999656677246 + 10.219999313354492 + + cloud_shadow + + 0.42999997735023499 + 0 + 0 + 1 + + density_multiplier + + 0.00052000000141561031 + 0 + 0 + 1 + + distance_multiplier + + 3.4000000953674316 + 0 + 0 + 1 + + east_angle + 4.8380527496337891 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 7.7999997138977051 + 0.0010000000474974513 + -0.59999996423721313 + 1 + + haze_density + + 1.1100000143051147 + 0 + 0 + 1 + + haze_horizon + + 0.12999999523162842 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.98646044731140137 + 0.10661106556653976 + -0.12461899220943451 + 0 + + max_y + + 591 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0.71999996900558472 + sun_angle + 3.0347785949707031 + sunlight_color + + 1.5 + 1.5299999713897705 + 2.8499999046325684 + 0.94999998807907104 + + + diff --git a/indra/newview/app_settings/windlight/skies/Fairy%20blue%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Fairy%20blue%20%28Paulina%29.xml new file mode 100644 index 000000000..a426aac29 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Fairy%20blue%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.2300000190734863 + 1.2300000190734863 + 1.1914535760879517 + 0.40999999642372131 + + blue_density + + 0.2199999988079071 + 0.57999998331069946 + 0.55851858854293823 + 0.68000000715255737 + + blue_horizon + + 0.2159720099190805 + 0.36269319055529792 + 0.41333344578742803 + 0.62444435060024084 + + cloud_color + + 0.22616269560725816 + 0.22616269560725816 + 0.22616269560725816 + 0.99997991561308353 + + cloud_pos_density1 + + 0.4699999988079071 + 0.5 + 0.88000017954328535 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998605913369 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499400261264498 + 10.010999906567616 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.00011000000085914508 + 0 + 0 + 1 + + distance_multiplier + + 16.200000762939453 + 0 + 0 + 1 + + east_angle + 6.2831854820251465 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1.8899999856948853 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.2000000476837158 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 1.2670240323586768e-007 + 0.68911367654800415 + -0.72465324401855469 + 0 + + max_y + + 403 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2999999523162842 + sun_angle + 2.3813273906707764 + sunlight_color + + 0.52803641557693481 + 0.52897685766220093 + 0.56999999284744263 + 0.18999999761581421 + + + diff --git a/indra/newview/app_settings/windlight/skies/Fairy%20dark%20blue%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Fairy%20dark%20blue%20%28Paulina%29.xml new file mode 100644 index 000000000..4fbdfe121 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Fairy%20dark%20blue%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.58604651689529419 + 0.7813953161239624 + 1.0499999523162842 + 0.34999999403953552 + + blue_density + + 0.43999999761581421 + 0.43999999761581421 + 0.43999999761581421 + 0.2199999988079071 + + blue_horizon + + 0.2159720099190805 + 0.36269319055529792 + 0.41333344578742803 + 0.62444435060024084 + + cloud_color + + 0.22616269560725816 + 0.22616269560725816 + 0.22616269560725816 + 0.99997991561308353 + + cloud_pos_density1 + + 0.4699999988079071 + 0.5 + 0.88000017954328535 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998605913369 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499400261264498 + 10.010999906567616 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.0002899999963119626 + 0 + 0 + 1 + + distance_multiplier + + 16.200000762939453 + 0 + 0 + 1 + + east_angle + 1.1938052177429199 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1.6200000047683716 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.2000000476837158 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.9034002423286438 + 0.23649945855140686 + 0.35768145322799683 + 1 + + max_y + + 1047 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2999999523162842 + sun_angle + 3.3803541660308838 + sunlight_color + + 2.3344762325286865 + 2.3386342525482178 + 2.5199999809265137 + 0.8399999737739563 + + + diff --git a/indra/newview/app_settings/windlight/skies/Fairy%20light%20pink%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Fairy%20light%20pink%20%28Paulina%29.xml new file mode 100644 index 000000000..a3d67ac73 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Fairy%20light%20pink%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.7400000095367432 + 1.4500001668930054 + 1.353333592414856 + 0.57999998331069946 + + blue_density + + 0.17032256722450256 + 0.47999998927116394 + 0.3449999988079071 + 0.23999999463558197 + + blue_horizon + + 0.93999999761581421 + 0.2199999988079071 + 0.25999999046325684 + 0.93999999761581421 + + cloud_color + + 0.22616269560725816 + 0.22616269560725816 + 0.22616269560725816 + 0.99997991561308353 + + cloud_pos_density1 + + 0.4699999988079071 + 0.5 + 0.88000017954328535 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998605913369 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499400261264498 + 10.010999906567616 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 4.0999999046325684 + 0 + 0 + 1 + + east_angle + 4.6495571136474609 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1.2799999713897705 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.2000000476837158 + 1 + + haze_density + + 0.2199999988079071 + 0 + 0 + 1 + + haze_horizon + + 0.08999999612569809 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.72322285175323486 + 0.68911415338516235 + -0.045501336455345154 + 1 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 2 + sun_angle + 3.9018585681915283 + sunlight_color + + 1.9521123170852661 + 2.0000483989715576 + 2.0999999046325684 + 0.69999998807907104 + + + diff --git a/indra/newview/app_settings/windlight/skies/Fairy%20warm%20pinks%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Fairy%20warm%20pinks%20%28Paulina%29.xml new file mode 100644 index 000000000..72d3345c4 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Fairy%20warm%20pinks%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.68999993801116943 + 0.44999998807907104 + 0.42000001668930054 + 0.68999993801116943 + + blue_density + + 0.25714284181594849 + 0.71428567171096802 + 1 + 0.5 + + blue_horizon + + 0.56000000238418579 + 0.17999999225139618 + 0.25999999046325684 + 0.56000000238418579 + + cloud_color + + 0.22616269560725816 + 0.22616269560725816 + 0.22616269560725816 + 0.99997991561308353 + + cloud_pos_density1 + + 0.4699999988079071 + 0.5 + 0.88000017954328535 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998605913369 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499400261264498 + 10.010999906567616 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.00042999998549930751 + 0 + 0 + 1 + + distance_multiplier + + 9.5 + 0 + 0 + 1 + + east_angle + 0.81681406497955322 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1.8199999332427979 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.2000000476837158 + 1 + + haze_density + + 0.31999999284744263 + 0 + 0 + 1 + + haze_horizon + + 0.029999999329447746 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.63206756114959717 + 0.49818456172943115 + -0.59355098009109497 + 1 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 2 + sun_angle + 5.7616815567016602 + sunlight_color + + 1.7400000095367432 + 1.5899999141693115 + 0.71999996900558472 + 1.7400000095367432 + + + diff --git a/indra/newview/app_settings/windlight/skies/Midday.xml b/indra/newview/app_settings/windlight/skies/Midday.xml new file mode 100644 index 000000000..119b3e141 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Midday.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.0499999523162842 + 1.0499999523162842 + 1.0499999523162842 + 0.34999999403953552 + + blue_density + + 0.24475815892219543 + 0.44872328639030457 + 0.75999999046325684 + 0.37999999523162842 + + blue_horizon + + 0.49548381567001343 + 0.49548381567001343 + 0.63999998569488525 + 0.31999999284744263 + + cloud_color + + 0.40999999642372131 + 0.40999999642372131 + 0.40999999642372131 + 0.40999999642372131 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 1 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.199999809265137 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00017999998817685992 + 0 + 0 + 1 + + distance_multiplier + + 0.80000001192092896 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 0.69999998807907104 + 0 + 0 + 1 + + haze_horizon + + 0.18999999761581421 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 1605 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 0.7342105507850647 + 0.78157895803451538 + 0.89999997615814209 + 0.29999998211860657 + + + diff --git a/indra/newview/app_settings/windlight/skies/Midnight.xml b/indra/newview/app_settings/windlight/skies/Midnight.xml new file mode 100644 index 000000000..0aba31214 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Midnight.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.20405027270317078 + 0.24246673285961151 + 0.32999998331069946 + 0.10999999940395355 + + blue_density + + 0.44999998807907104 + 0.44999998807907104 + 0.44999998807907104 + 1 + + blue_horizon + + 0.23999999463558197 + 0.23999999463558197 + 0.23999999463558197 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00030000001424923539 + 0 + 0 + 1 + + distance_multiplier + + 0 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.8876205482883961e-007 + 1 + + max_y + + 906.20001220703125 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 2 + sun_angle + 4.7123894691467285 + sunlight_color + + 0.34876692295074463 + 0.35574248433113098 + 0.65999996662139893 + 0.2199999988079071 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%201.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%201.xml new file mode 100644 index 000000000..4dee8354e --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%201.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0 + 0 + 0 + + blue_density + + 0.5 + 0.5 + 0.5 + 0.25 + + blue_horizon + + 0.56000000238418579 + 0.56000000238418579 + 0.56000000238418579 + 0.2800000011920929 + + cloud_color + + 0.22617273092134837 + 0.2261830306064212 + 0.22618354559006093 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.12499716758729562 + 1 + + cloud_scale + + 0.22999998927116394 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499370784775238 + 10.011009025563908 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.19999998807907104 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + -2.5 + 1 + + haze_density + + 0 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 2 + sun_angle + 1.5707963705062866 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%202.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%202.xml new file mode 100644 index 000000000..ef93fdc08 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Black%20fog%202.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.29999998211860657 + 0.29999998211860657 + 0.29999998211860657 + 0.099999994039535522 + + blue_density + + 0.5 + 0.5 + 0.5 + 0.25 + + blue_horizon + + 0.56000000238418579 + 0.56000000238418579 + 0.56000000238418579 + 0.2800000011920929 + + cloud_color + + 0 + 0 + 0 + 0 + + cloud_pos_density1 + + 0 + 0 + 0 + 1 + + cloud_pos_density2 + + 0 + 0 + 0 + 1 + + cloud_scale + + 0.0099999997764825821 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499370784775238 + 10.011009025563908 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.19999998807907104 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.5 + 1 + + haze_density + + 0 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20blue.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20blue.xml new file mode 100644 index 000000000..69a23e7f9 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20blue.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0 + 3 + 3 + + blue_density + + 0 + 0 + 2 + 2 + + blue_horizon + + 0 + 0 + 2 + 2 + + cloud_color + + 0 + 1 + 0 + 1 + + cloud_pos_density1 + + 1 + 1 + 1 + 1 + + cloud_pos_density2 + + 1 + 1 + 1 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.8000001907348633 + 8.9899997711181641 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00026999998954124749 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 2.6389377117156982 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.0099999997764825821 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 0.0099999997764825821 + 0 + 0 + 1 + + haze_horizon + + 1 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.48175370693206787 + 0 + 0.87630659341812134 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 3.2107079029083252 + sunlight_color + + 0 + 0 + 3 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20extreme.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20extreme.xml new file mode 100644 index 000000000..09d9c3546 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20extreme.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 3 + 3 + 3 + + blue_density + + 2 + 2 + 2 + 2 + + blue_horizon + + 2 + 2 + 2 + 2 + + cloud_color + + 1 + 1 + 1 + 1 + + cloud_pos_density1 + + 1 + 1 + 1 + 1 + + cloud_pos_density2 + + 1 + 1 + 1 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.8000001907348633 + 8.9899997711181641 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 3.1415927410125732 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.0099999997764825821 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.5 + 1 + + haze_density + + 0 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -8.7422776573475858e-008 + 0 + 1 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 3.1415927410125732 + sunlight_color + + 3 + 3 + 3 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20green.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20green.xml new file mode 100644 index 000000000..9343abe71 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20green.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 3 + 0 + 3 + + blue_density + + 0 + 2 + 0 + 2 + + blue_horizon + + 0 + 2 + 0 + 2 + + cloud_color + + 0 + 1 + 0 + 1 + + cloud_pos_density1 + + 1 + 1 + 1 + 1 + + cloud_pos_density2 + + 1 + 1 + 1 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.8000001907348633 + 8.9899997711181641 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00026999998954124749 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 2.6389377117156982 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.0099999997764825821 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 0.0099999997764825821 + 0 + 0 + 1 + + haze_horizon + + 1 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.48175376653671265 + 0 + 0.87630665302276611 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 3.2107079029083252 + sunlight_color + + 0 + 3 + 0 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20red.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20red.xml new file mode 100644 index 000000000..0ce00b1e8 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20red.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 0 + 0 + 3 + + blue_density + + 2 + 0 + 0 + 2 + + blue_horizon + + 2 + 0 + 0 + 2 + + cloud_color + + 0 + 1 + 0 + 1 + + cloud_pos_density1 + + 1 + 1 + 1 + 1 + + cloud_pos_density2 + + 1 + 1 + 1 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.8000001907348633 + 8.9899997711181641 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00026999998954124749 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 2.6389377117156982 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.0099999997764825821 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 0.0099999997764825821 + 0 + 0 + 1 + + haze_horizon + + 1 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.48175376653671265 + 0 + 0.87630665302276611 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 3.2107079029083252 + sunlight_color + + 3 + 0 + 0 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20underground%20comic.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20underground%20comic.xml new file mode 100644 index 000000000..62ebaa233 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20Drawing%20underground%20comic.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 3 + 3 + 3 + + blue_density + + 0.35000002384185791 + 0.28999707102775574 + 0.57999998331069946 + 0.57999998331069946 + + blue_horizon + + 0.56000000238418579 + 0.42976745963096619 + 0.2734883725643158 + 0.56000000238418579 + + cloud_color + + 1 + 1 + 1 + 1 + + cloud_pos_density1 + + 1 + 1 + 1 + 1 + + cloud_pos_density2 + + 1 + 1 + 1 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.8000001907348633 + 8.9899997711181641 + + cloud_shadow + + 0 + 0 + 0 + 1 + + density_multiplier + + 0.00020999999833293259 + 0 + 0 + 1 + + distance_multiplier + + 24.200000762939453 + 0 + 0 + 1 + + east_angle + 3.1415927410125732 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.0099999997764825821 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + -2.5 + 1 + + haze_density + + 0.56000000238418579 + 0 + 0 + 1 + + haze_horizon + + 0.2199999988079071 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -8.7422776573475858e-008 + 0 + 1 + 0 + + max_y + + 632 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 3.1415927410125732 + sunlight_color + + 3 + 3 + 3 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20fog.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20fog.xml new file mode 100644 index 000000000..088f09cbb --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20fog.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0 + 0 + 0 + + blue_density + + 0.39999997615814209 + 0.39999997615814209 + 0.39999997615814209 + 0.19999998807907104 + + blue_horizon + + 1 + 1 + 1 + 0.5 + + cloud_color + + 0.22617273092134837 + 0.2261830306064212 + 0.22618354559006093 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.12499716758729562 + 1 + + cloud_scale + + 0.22999998927116394 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499370784775238 + 10.011009025563908 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 0.19999980926513672 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 0.5 + 0 + 0 + 1 + + haze_horizon + + 0.32999998331069946 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20gray.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20gray.xml new file mode 100644 index 000000000..fbbf36485 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20gray.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0 + 0 + 0 + + blue_density + + 2 + 2 + 2 + 1 + + blue_horizon + + 2 + 2 + 2 + 1 + + cloud_color + + 0.22617273092134837 + 0.2261830306064212 + 0.22618354559006093 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.12499716758729562 + 1 + + cloud_scale + + 0.22999998927116394 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499370784775238 + 10.011009025563908 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00089999998454004526 + 0 + 0 + 1 + + distance_multiplier + + 100 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 1 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 0 + 1 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 0 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orac%20%2D%20green.xml b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20green.xml new file mode 100644 index 000000000..8c5e8f119 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orac%20%2D%20green.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 1.2599999904632568 + 0 + 1.2599999904632568 + + blue_density + + 0.019999999552965164 + 0.019999999552965164 + 0.019999999552965164 + 0.0099999997764825821 + + blue_horizon + + 0 + 0 + 0 + 0 + + cloud_color + + 0 + 0.5 + 0 + 0.5 + + cloud_pos_density1 + + 0 + 0 + 0.5 + 1 + + cloud_pos_density2 + + 0 + 0 + 0 + 1 + + cloud_scale + + 1 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.5 + 0 + 0 + 1 + + density_multiplier + + 0 + 0 + 0 + 1 + + distance_multiplier + + 0 + 0 + 0 + 1 + + east_angle + 0.062831856310367584 + enable_cloud_scroll + + 0 + 0 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 0 + 0 + 0 + 1 + + haze_horizon + + 0 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.05404643714427948 + 0.509041428565979 + 0.85904353857040405 + 0 + + max_y + + 1 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 0.53407078981399536 + sunlight_color + + 0 + 1.1399999856948853 + 0 + 1.1399999856948853 + + + diff --git a/indra/newview/app_settings/windlight/skies/Orange%20Incubus.xml b/indra/newview/app_settings/windlight/skies/Orange%20Incubus.xml new file mode 100644 index 000000000..6ab92ce6f --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Orange%20Incubus.xml @@ -0,0 +1,142 @@ + + + + ambient + + 1.8999998569488525 + 0.80384618043899536 + 2.8499999046325684 + 0.94999998807907104 + + blue_density + + 0.43999999761581421 + 0 + 0 + 0.2199999988079071 + + blue_horizon + + 0.2800000011920929 + 0 + 0 + 0.2800000011920929 + + cloud_color + + 0.75 + 0.56999999284744263 + 0 + 0.75 + + cloud_pos_density1 + + 1 + 0.48999997973442078 + 0.34999999403953552 + 1 + + cloud_pos_density2 + + 0.31000000238418579 + 0 + 0 + 1 + + cloud_scale + + 0.59999996423721313 + 0 + 0 + 1 + + cloud_scroll_rate + + 8.1899995803833008 + 9.7199993133544922 + + cloud_shadow + + 0.28999999165534973 + 0 + 0 + 1 + + density_multiplier + + 9.9999997473787516e-006 + 0 + 0 + 1 + + distance_multiplier + + 18.100000381469727 + 0 + 0 + 1 + + east_angle + 2.4504423141479492 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.57999998331069946 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + -2.2000000476837158 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.019999999552965164 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 3.1154863222582208e-007 + 1 + 3.765976543945726e-007 + 1 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 26 + star_brightness + 2 + sun_angle + 4.7123894691467285 + sunlight_color + + 0 + 0.80999994277954102 + 2.0699999332427979 + 2.0699999332427979 + + + diff --git a/indra/newview/app_settings/windlight/skies/PaperSnow.xml b/indra/newview/app_settings/windlight/skies/PaperSnow.xml new file mode 100644 index 000000000..a34ac8df6 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/PaperSnow.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.62999999523162842 + 0.62999999523162842 + 0.62999999523162842 + 0.62999999523162842 + + blue_density + + 0.56000000238418579 + 0.56000000238418579 + 0.23999999463558197 + 0.56000000238418579 + + blue_horizon + + 0.59999996423721313 + 0.59999996423721313 + 0.68000000715255737 + 0.74000000953674316 + + cloud_color + + 0.12862999737262726 + 0.12862999737262726 + 0.12862999737262726 + 1 + + cloud_pos_density1 + + 0.88419097661972046 + 0.53047597408294678 + 0.4270470142364502 + 1 + + cloud_pos_density2 + + 0.38419300317764282 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10 + 10 + + cloud_shadow + + 0.61711597442626953 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 16.200000762939453 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.94999998807907104 + 0 + 0 + 1 + + glow + + 6.4079799652099609 + 0.0012815999798476696 + -0.44999998807907104 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.12999999523162842 + 0.21744099259376526 + 0.21744099259376526 + 1 + + lightnorm + + 0 + 0.25477027893066406 + -0.96700161695480347 + 1 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 2 + star_brightness + 0 + sun_angle + 6.0255751609802246 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Abracadabra.xml b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra.xml new file mode 100644 index 000000000..21e73f0a4 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.35999998450279236 + 0.25200003385543823 + 0 + 0.11999999731779099 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.47999998927116394 + 0.29999998211860657 + 0.2800000011920929 + 0.51999998092651367 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00022000000171829015 + 0 + 0 + 1 + + distance_multiplier + + 31.100000381469727 + 0 + 0 + 1 + + east_angle + 4.3353981971740723 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.2699999809265137 + 0 + 0 + 1 + + haze_horizon + + 0.2800000011920929 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.86661803722381592 + 0.36227512359619141 + 0.34311801195144653 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 0.45999997854232788 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Abracadabra2.xml b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra2.xml new file mode 100644 index 000000000..55158516c --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra2.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.35999998450279236 + 0.25200003385543823 + 0 + 0.11999999731779099 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.47999998927116394 + 0.53999996185302734 + 0.45999997854232788 + 0.53999996185302734 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 24.30000114440918 + 0 + 0 + 1 + + east_angle + 5.9061942100524902 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6899999380111694 + 0 + 0 + 1 + + glow + + 15.59999942779541 + 0.0010000000474974513 + -0.59999996423721313 + 1 + + haze_density + + 1.2699999809265137 + 0 + 0 + 1 + + haze_horizon + + 0.26999998092651367 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.34311828017234802 + 0.36227512359619141 + -0.86661791801452637 + 0 + + max_y + + 483 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 0.45999997854232788 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Abracadabra3.xml b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra3.xml new file mode 100644 index 000000000..9b5388ab6 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Abracadabra3.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.35999998450279236 + 0.25200003385543823 + 0 + 0.11999999731779099 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.47999998927116394 + 0.53999996185302734 + 0.45999997854232788 + 0.53999996185302734 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 24.30000114440918 + 0 + 0 + 1 + + east_angle + 5.026547908782959 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6899999380111694 + 0 + 0 + 1 + + glow + + 15.59999942779541 + 0.0010000000474974513 + -0.59999996423721313 + 1 + + haze_density + + 1.2699999809265137 + 0 + 0 + 1 + + haze_horizon + + 0.26999998092651367 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.88645249605178833 + 0.36227512359619141 + -0.28802555799484253 + 0 + + max_y + + 483 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 0.45999997854232788 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Annamaria.xml b/indra/newview/app_settings/windlight/skies/Places%20Annamaria.xml new file mode 100644 index 000000000..15876975d --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Annamaria.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.17999999225139618 + 0.17999999225139618 + 0 + 0.17999999225139618 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.75999999046325684 + 1 + + blue_horizon + + 0.084897957742214203 + 0.11000000685453415 + 0.25999999046325684 + 0.12999999523162842 + + cloud_color + + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + + cloud_pos_density1 + + 0.63999998569488525 + 0.5 + 0.56999999284744263 + 1 + + cloud_pos_density2 + + 0.37000000476837158 + 0.35999998450279236 + 0 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.219999775290489 + 9.9899997767060995 + + cloud_shadow + + 0.31999999284744263 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 2 + 0 + 0 + 1 + + east_angle + 3.1415927410125732 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5.3999996185302734 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -8.1484252234531596e-008 + 0.36227512359619141 + 0.93207120895385742 + 0 + + max_y + + 671 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0.2199999988079071 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Astryls%20Wild.xml b/indra/newview/app_settings/windlight/skies/Places%20Astryls%20Wild.xml new file mode 100644 index 000000000..c9783190b --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Astryls%20Wild.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.7372221946716309 + 1.7699999809265137 + 1.5899999141693115 + 1.7999999523162842 + + blue_density + + 0.5 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.31999999284744263 + 0.2800000011920929 + 0.37999999523162842 + 0.37999999523162842 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00053999997908249497 + 0 + 0 + 1 + + distance_multiplier + + 8.8000001907348633 + 0 + 0 + 1 + + east_angle + 0.56548666954040527 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.94999998807907104 + 0 + 0 + 1 + + glow + + 11.600000381469727 + 0.0010000000474974513 + -2.2999999523162842 + 1 + + haze_density + + 1.4299999475479126 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.38828861713409424 + 0.68911367654800415 + -0.61184495687484741 + 0 + + max_y + + 886 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.3813273906707764 + sunlight_color + + 1.4399999380111694 + 1.4699999094009399 + 1.4399999380111694 + 1.4699999094009399 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Babbage.xml b/indra/newview/app_settings/windlight/skies/Places%20Babbage.xml new file mode 100644 index 000000000..a7176d14e --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Babbage.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.32999998331069946 + 0.32999998331069946 + 0.32999998331069946 + 0.10999999940395355 + + blue_density + + 0 + 0.39999699592590332 + 0.80000197887420654 + 0.97999995946884155 + + blue_horizon + + 0.16199998557567596 + 0.76855206489562988 + 0.89999997615814209 + 0.44999998807907104 + + cloud_color + + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + + cloud_pos_density1 + + 0.5 + 0.5 + 0.53999996185302734 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.29999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.39999997615814209 + 0 + 0 + 1 + + density_multiplier + + 0.00072999997064471245 + 0 + 0 + 1 + + distance_multiplier + + 7.4000000953674316 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 3.7999999523162842 + 0.0010000000474974513 + -0.5 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.64999997615814209 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 1745 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 0.53999996185302734 + 0.53999996185302734 + 0.53999996185302734 + 0.17999999225139618 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay%20Surreal.xml b/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay%20Surreal.xml new file mode 100644 index 000000000..1b06037ae --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay%20Surreal.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.35999998450279236 + 0.25200003385543823 + 0 + 0.11999999731779099 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.47999998927116394 + 0.53999996185302734 + 0.45999997854232788 + 0.53999996185302734 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 7.0000001869630069e-005 + 0 + 0 + 1 + + distance_multiplier + + 31.100000381469727 + 0 + 0 + 1 + + east_angle + 4.0840702056884766 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6899999380111694 + 0 + 0 + 1 + + glow + + 15.59999942779541 + 0.0010000000474974513 + -0.59999996423721313 + 1 + + haze_density + + 1.2699999809265137 + 0 + 0 + 1 + + haze_horizon + + 0.26999998092651367 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.75406128168106079 + 0.36227512359619141 + 0.54785788059234619 + 0 + + max_y + + 403 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 0.45999997854232788 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay.xml b/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay.xml new file mode 100644 index 000000000..d4fa195fe --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Beach%20Cay.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.029999999329447746 + 0 + 0.21000000834465027 + + blue_density + + 0.29999998211860657 + 0.29999998211860657 + 0.29999998211860657 + 0.14999999105930328 + + blue_horizon + + 0.47999998927116394 + 0.17142856121063232 + 0 + 0.23999999463558197 + + cloud_color + + 0.26999998092651367 + 0.34999999403953552 + 0.029999999329447746 + 0.34999999403953552 + + cloud_pos_density1 + + 0.85999995470046997 + 0.42999997735023499 + 0.45999997854232788 + 1 + + cloud_pos_density2 + + 1 + 1 + 0.099999994039535522 + 1 + + cloud_scale + + 0.14000000059604645 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.644780158996582 + 10.423800468444824 + + cloud_shadow + + 0.2800000011920929 + 0 + 0 + 1 + + density_multiplier + + 0.00013999998918734491 + 0 + 0 + 1 + + distance_multiplier + + 37.799999237060547 + 0 + 0 + 1 + + east_angle + 1.7592918872833252 + enable_cloud_scroll + + 1 + 1 + + gamma + + 2.2999999523162842 + 0 + 0 + 1 + + glow + + 2.5999999046325684 + 0.0013735899701714516 + -2.5 + 1 + + haze_density + + 1.7300000190734863 + 0 + 0 + 1 + + haze_horizon + + 0.14999999105930328 + 0.13210900127887726 + 0.13210900127887726 + 1 + + lightnorm + + -0.98228722810745239 + 0 + -0.187381312251091 + 0 + + max_y + + 1396 + 0 + 0 + 1 + + preset_num + 5 + star_brightness + 2 + sun_angle + 0 + sunlight_color + + 1.9199999570846558 + 1.7699999809265137 + 0 + 1.9199999570846558 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Bentham.xml b/indra/newview/app_settings/windlight/skies/Places%20Bentham.xml new file mode 100644 index 000000000..db35e04ec --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Bentham.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.59999996423721313 + 0.4888889491558075 + 0.40000000596046448 + 0.19999998807907104 + + blue_density + + 1.059999942779541 + 0.47638890147209167 + 0.47638890147209167 + 1.059999942779541 + + blue_horizon + + 0.14000000059604645 + 0.31999999284744263 + 0.62000000476837158 + 0.62000000476837158 + + cloud_color + + 0.28999999165534973 + 0.28999999165534973 + 0.31999999284744263 + 0.31999999284744263 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 9.9299993515014648 + + cloud_shadow + + 0.32999998331069946 + 0 + 0 + 1 + + density_multiplier + + 0.00032999998074956238 + 0 + 0 + 1 + + distance_multiplier + + 6.8000001907348633 + 0 + 0 + 1 + + east_angle + 4.7752208709716797 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.0799999237060547 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.91343516111373901 + 0.4029063880443573 + -0.057468503713607788 + 0 + + max_y + + 644 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7269024848937988 + sunlight_color + + 2.25 + 1.8899999856948853 + 1.6800000667572021 + 2.25 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Cornfield.xml b/indra/newview/app_settings/windlight/skies/Places%20Cornfield.xml new file mode 100644 index 000000000..77416688e --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Cornfield.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.7400000095367432 + 1.619999885559082 + 1.4099999666213989 + 2.4600000381469727 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.2800000011920929 + 0.29999998211860657 + 0.37999999523162842 + 0.39999997615814209 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00031000000308267772 + 0 + 0 + 1 + + distance_multiplier + + 6.8000001907348633 + 0 + 0 + 1 + + east_angle + 4.5238933563232422 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.74000000953674316 + 0 + 0 + 1 + + glow + + 11.600000381469727 + 0.0010000000474974513 + -2.2999999523162842 + 1 + + haze_density + + 1.4299999475479126 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.71181762218475342 + 0.68911367654800415 + 0.1357865184545517 + 0 + + max_y + + 242 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.3813273906707764 + sunlight_color + + 1.4399999380111694 + 1.4399999380111694 + 1.4399999380111694 + 0.47999998927116394 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Cromac.xml b/indra/newview/app_settings/windlight/skies/Places%20Cromac.xml new file mode 100644 index 000000000..efec78721 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Cromac.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.0799999237060547 + 0.98999994993209839 + 0.77999997138977051 + 1.0799999237060547 + + blue_density + + 0.64736837148666382 + 0.48414888978004456 + 0.81999999284744263 + 0.40999999642372131 + + blue_horizon + + 0.5 + 0.49548381567001343 + 0.45999997854232788 + 0.51999998092651367 + + cloud_color + + 0.4100000062111997 + 0.4100000062111997 + 0.4100000062111997 + 0.4100000062111997 + + cloud_pos_density1 + + 0.14000000059604645 + 0.62000000476837158 + 1 + 1 + + cloud_pos_density2 + + 0.35999998450279236 + 0.56999999284744263 + 0.12999999523162842 + 1 + + cloud_scale + + 0.35999998450279236 + 0 + 0 + 1.0000000149011612 + + cloud_scroll_rate + + 10.199999791580112 + 10.010999679880427 + + cloud_shadow + + 0.29999998211860657 + 0 + 0 + 1.0000000149011612 + + density_multiplier + + 7.9999997979030013e-005 + 0 + 0 + 1.0000000149011612 + + distance_multiplier + + 5.4000000953674316 + 0 + 0 + 1.0000000149011612 + + east_angle + 4.2725663185119629 + enable_cloud_scroll + + 1 + 1 + + gamma + + 2.8399999141693115 + 0 + 0 + 1.0000000149011612 + + glow + + 5 + 0.0010000000474974513 + -0.55000001192092896 + 1 + + haze_density + + 0.31999999284744263 + 0 + 0 + 1 + + haze_horizon + + 0.17999999225139618 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.14154624938964844 + 0.98768830299377441 + 0.066606558859348297 + 0 + + max_y + + 805 + 0 + 0 + 1.0000000149011612 + + preset_num + 28 + star_brightness + 0.25999999046325684 + sun_angle + 1.7278760671615601 + sunlight_color + + 0.69882339239120483 + 0.8258824348449707 + 1.0799999237060547 + 0.35999998450279236 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Crucible.xml b/indra/newview/app_settings/windlight/skies/Places%20Crucible.xml new file mode 100644 index 000000000..08c15adf0 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Crucible.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.20405015781398106 + 0.24246659642869872 + 0.33000011563842691 + 0.11000042485298422 + + blue_density + + 0.44999968444335536 + 0.44999993884084688 + 0.45000033684982554 + 1 + + blue_horizon + + 0.2399998628207527 + 0.23999996847777538 + 0.24000000489354534 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00030000017352815878 + 0 + 0 + 1 + + distance_multiplier + + 2.6920993051460229e-006 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 3.9999967092453517 + 0 + 0 + 1 + + haze_horizon + + 1.5953180371869324e-007 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0 + 0.99963462352752686 + 0.027029547840356827 + 1 + + max_y + + 906.19966977159493 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 1.9999979734420776 + sun_angle + 4.6853561401367187 + sunlight_color + + 0.34876771076233126 + 0.35574326291055058 + 0.66000120168018839 + 0.22000041117803448 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20District8.xml b/indra/newview/app_settings/windlight/skies/Places%20District8.xml new file mode 100644 index 000000000..0ef69a361 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20District8.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.26999998092651367 + 0.21000000834465027 + 0.08999999612569809 + 0.26999998092651367 + + blue_density + + 0.71999996900558472 + 1.0199999809265137 + 1.059999942779541 + 1.059999942779541 + + blue_horizon + + 0.35999998450279236 + 0.36272725462913513 + 0.41999998688697815 + 0.5 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25 + 0 + 0 + 1 + + density_multiplier + + 0.00020999999833293259 + 0 + 0 + 1 + + distance_multiplier + + 4.7000002861022949 + 0 + 0 + 1 + + east_angle + 3.3300881385803223 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.2200000286102295 + 0 + 0 + 1 + + glow + + 16.600000381469727 + 0.0010000000474974513 + -0.049999997019767761 + 1 + + haze_density + + 2.1599998474121094 + 0 + 0 + 1 + + haze_horizon + + 0.25999999046325684 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.17994101345539093 + 0.27899131178855896 + -0.94328427314758301 + 1 + + max_y + + 698 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 3.4243361949920654 + sunlight_color + + 2.0999999046325684 + 2.1599998474121094 + 2.1599998474121094 + 2.1599998474121094 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Duskwood.xml b/indra/newview/app_settings/windlight/skies/Places%20Duskwood.xml new file mode 100644 index 000000000..2389e9660 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Duskwood.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.17999999225139618 + 0.17999999225139618 + 0 + 0.17999999225139618 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.75999999046325684 + 1 + + blue_horizon + + 0.084897957742214203 + 0.11000000685453415 + 0.25999999046325684 + 0.12999999523162842 + + cloud_color + + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + + cloud_pos_density1 + + 0.63999998569488525 + 0.5 + 0.56999999284744263 + 1 + + cloud_pos_density2 + + 0.37000000476837158 + 0.35999998450279236 + 0 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.219999775290489 + 9.9899997767060995 + + cloud_shadow + + 0.31999999284744263 + 0 + 0 + 1 + + density_multiplier + + 0.00031000000308267772 + 0 + 0 + 1 + + distance_multiplier + + 33.100002288818359 + 0 + 0 + 1 + + east_angle + 3.1415927410125732 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5.3999996185302734 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -8.1484252234531596e-008 + 0.36227512359619141 + 0.93207120895385742 + 0 + + max_y + + 671 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0.2199999988079071 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Eridu.xml b/indra/newview/app_settings/windlight/skies/Places%20Eridu.xml new file mode 100644 index 000000000..d93310016 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Eridu.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.50999999046325684 + 0.57310229539871216 + 0.59999996423721313 + 0.59999996423721313 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.15130999684333801 + 0.30000001192092896 + 0.35131001472473145 + 1 + + cloud_color + + 0.12862999737262726 + 0.12862999737262726 + 0.12862999737262726 + 1 + + cloud_pos_density1 + + 0.88419097661972046 + 0.53047597408294678 + 0.4270470142364502 + 1 + + cloud_pos_density2 + + 0.38419300317764282 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10 + 10 + + cloud_shadow + + 0.61711597442626953 + 0 + 0 + 1 + + density_multiplier + + 0.0001250890054507181 + 0 + 0 + 1 + + distance_multiplier + + 11.40000057220459 + 0 + 0 + 1 + + east_angle + 5.4035391807556152 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.87999999523162842 + 0 + 0 + 1 + + glow + + 6.4079799652099609 + 0.0012815999798476696 + -0.42292699217796326 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.21744099259376526 + 0.21744099259376526 + 0.21744099259376526 + 1 + + lightnorm + + 0.76102709770202637 + 0.15643447637557983 + 0.62957614660263062 + 0 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 2 + star_brightness + 0 + sun_angle + 0.15707963705062866 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Erie.xml b/indra/newview/app_settings/windlight/skies/Places%20Erie.xml new file mode 100644 index 000000000..7be0e3ffd --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Erie.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.26999998092651367 + 0.26999998092651367 + 0.26999998092651367 + 0.08999999612569809 + + blue_density + + 0.35999998450279236 + 0.35999998450279236 + 0.35999998450279236 + 0.17999999225139618 + + blue_horizon + + 0.16199998557567596 + 0.76855206489562988 + 1.9799998998641968 + 1.9799998998641968 + + cloud_color + + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + + cloud_pos_density1 + + 0.5 + 0.5 + 0.53999996185302734 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.29999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.39999997615814209 + 0 + 0 + 1 + + density_multiplier + + 0.00054999999701976776 + 0 + 0 + 1 + + distance_multiplier + + 6.0999999046325684 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.5499999523162842 + 0 + 0 + 1 + + glow + + 3.7999999523162842 + 0.0010000000474974513 + -0.5 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.64999997615814209 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 1745 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 0.08999999612569809 + 0.070000007748603821 + 0.08999999612569809 + 0.029999999329447746 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Eugene%202.xml b/indra/newview/app_settings/windlight/skies/Places%20Eugene%202.xml new file mode 100644 index 000000000..85a0a2d93 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Eugene%202.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.029999997466802597 + 0 + 0.070000000298023224 + + blue_density + + 0.29999998211860657 + 0.29999998211860657 + 0.29999998211860657 + 0.14999999105930328 + + blue_horizon + + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + 0.47999998927116394 + + cloud_color + + 0.29999998211860657 + 0.34999999403953552 + 0.029999999329447746 + 0.34999999403953552 + + cloud_pos_density1 + + 0.85999995470046997 + 0.42999997735023499 + 0.45999997854232788 + 1 + + cloud_pos_density2 + + 1 + 1 + 0.099999994039535522 + 1 + + cloud_scale + + 0.14000000059604645 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.644780158996582 + 10.423800468444824 + + cloud_shadow + + 0.2800000011920929 + 0 + 0 + 1 + + density_multiplier + + 0.00013999998918734491 + 0 + 0 + 1 + + distance_multiplier + + 37.799999237060547 + 0 + 0 + 1 + + east_angle + 1.382300853729248 + enable_cloud_scroll + + 1 + 1 + + gamma + + 4.190000057220459 + 0 + 0 + 1 + + glow + + 8.8000011444091797 + 0.0013735899701714516 + -0.94999998807907104 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.019999999552965164 + 0.13210900127887726 + 0.13210900127887726 + 1 + + lightnorm + + -0.98228728771209717 + 0 + 0.18738122284412384 + 0 + + max_y + + 1396 + 0 + 0 + 1 + + preset_num + 5 + star_brightness + 2 + sun_angle + 0 + sunlight_color + + 1.2300000190734863 + 0.82000011205673218 + 0.84000003337860107 + 1.2899999618530273 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Eugene%20BL.xml b/indra/newview/app_settings/windlight/skies/Places%20Eugene%20BL.xml new file mode 100644 index 000000000..2402f44d0 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Eugene%20BL.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.029999997466802597 + 0 + 0.070000000298023224 + + blue_density + + 0.29999998211860657 + 0.29999998211860657 + 0.29999998211860657 + 0.14999999105930328 + + blue_horizon + + 0.47999998927116394 + 0.17142856121063232 + 0 + 0.23999999463558197 + + cloud_color + + 0.29999998211860657 + 0.34999999403953552 + 0.029999999329447746 + 0.34999999403953552 + + cloud_pos_density1 + + 0.85999995470046997 + 0.42999997735023499 + 0.45999997854232788 + 1 + + cloud_pos_density2 + + 1 + 1 + 0.099999994039535522 + 1 + + cloud_scale + + 0.14000000059604645 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.644780158996582 + 10.423800468444824 + + cloud_shadow + + 0.2800000011920929 + 0 + 0 + 1 + + density_multiplier + + 0.00013999998918734491 + 0 + 0 + 1 + + distance_multiplier + + 37.799999237060547 + 0 + 0 + 1 + + east_angle + 1.382300853729248 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.1499999761581421 + 0 + 0 + 1 + + glow + + 8.8000011444091797 + 0.0013735899701714516 + -0.94999998807907104 + 1 + + haze_density + + 1.7300000190734863 + 0 + 0 + 1 + + haze_horizon + + 0.14999999105930328 + 0.13210900127887726 + 0.13210900127887726 + 1 + + lightnorm + + -0.98228728771209717 + 0 + 0.18738122284412384 + 0 + + max_y + + 1396 + 0 + 0 + 1 + + preset_num + 5 + star_brightness + 2 + sun_angle + 0 + sunlight_color + + 1.2300000190734863 + 0.82000011205673218 + 0 + 0.40999999642372131 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Greed.xml b/indra/newview/app_settings/windlight/skies/Places%20Greed.xml new file mode 100644 index 000000000..268716b94 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Greed.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.1699999570846558 + 0.95727264881134033 + 0.95727264881134033 + 0.38999998569488525 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.10767599940299988 + 0.21348699927330017 + 0.25 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00046000001020729542 + 0 + 0 + 1 + + distance_multiplier + + 1 + 0 + 0 + 1 + + east_angle + 5.4035391807556152 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6200000047683716 + 0 + 0 + 1 + + glow + + 4.2000007629394531 + 0.0010000000474974513 + -0 + 1 + + haze_density + + 0.69999998807907104 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.75594335794448853 + 0.19354932010173798 + -0.6253705620765686 + 0 + + max_y + + 562.5 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 2.9468140602111816 + sunlight_color + + 2.8385701179504395 + 2.8385701179504395 + 2.8385701179504395 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Greed2.xml b/indra/newview/app_settings/windlight/skies/Places%20Greed2.xml new file mode 100644 index 000000000..ec5282f7e --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Greed2.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.1699999570846558 + 0.95727264881134033 + 0.95727264881134033 + 0.38999998569488525 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.10767599940299988 + 0.21348699927330017 + 0.25 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00046000001020729542 + 0 + 0 + 1 + + distance_multiplier + + 1 + 0 + 0 + 1 + + east_angle + 2.9530971050262451 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.2200000286102295 + 0 + 0 + 1 + + glow + + 4.2000007629394531 + 0.0010000000474974513 + -0 + 1 + + haze_density + + 0.69999998807907104 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.18383802473545074 + 0.19354932010173798 + 0.96371269226074219 + 0 + + max_y + + 562.5 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 2.9468140602111816 + sunlight_color + + 2.8385701179504395 + 2.8385701179504395 + 2.8385701179504395 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Imagine.xml b/indra/newview/app_settings/windlight/skies/Places%20Imagine.xml new file mode 100644 index 000000000..48fba1e31 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Imagine.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.68999993801116943 + 0.68999993801116943 + 0.68999993801116943 + 0.68999993801116943 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.25999999046325684 + 0.29999998211860657 + 0.37999999523162842 + 0.37999999523162842 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00038999997195787728 + 0 + 0 + 1 + + distance_multiplier + + 11.5 + 0 + 0 + 1 + + east_angle + 5.7176985740661621 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.68000000715255737 + 0 + 0 + 1 + + glow + + 12.399999618530273 + 0.0010000000474974513 + -1.8500000238418579 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.41922605037689209 + 0.6227877140045166 + -0.6605944037437439 + 0 + + max_y + + 940 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.4692919254302979 + sunlight_color + + 2.6700000762939453 + 2.6700000762939453 + 2.6700000762939453 + 0.88999998569488525 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Kingsport.xml b/indra/newview/app_settings/windlight/skies/Places%20Kingsport.xml new file mode 100644 index 000000000..dfaf68596 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Kingsport.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.32999998331069946 + 0.32999998331069946 + 0.32999998331069946 + 0.32999998331069946 + + blue_density + + 0 + 0 + 0 + 0 + + blue_horizon + + 0.16199998557567596 + 0.76855206489562988 + 0.89999997615814209 + 0.44999998807907104 + + cloud_color + + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + + cloud_pos_density1 + + 0.5 + 0.5 + 0.53999996185302734 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.29999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.39999997615814209 + 0 + 0 + 1 + + density_multiplier + + 0.00058999995235353708 + 0 + 0 + 1 + + distance_multiplier + + 12.800000190734863 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.4199999570846558 + 0 + 0 + 1 + + glow + + 3.7999999523162842 + 0.0010000000474974513 + -0.5 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.64999997615814209 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 1 + -4.3711388286737929e-008 + 0 + + max_y + + 2013 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.5707963705062866 + sunlight_color + + 0.53999996185302734 + 0.53999996185302734 + 0.53999996185302734 + 0.17999999225139618 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Kunming.xml b/indra/newview/app_settings/windlight/skies/Places%20Kunming.xml new file mode 100644 index 000000000..e641bebcc --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Kunming.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.89999997615814209 + 0.80999994277954102 + 0.80999994277954102 + 0.89999997615814209 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.10767599940299988 + 0.21348699927330017 + 0.25 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.32999998331069946 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.48999997973442078 + 0 + 0 + 1 + + density_multiplier + + 0.00059999997029080987 + 0 + 0 + 1 + + distance_multiplier + + 18.200000762939453 + 0 + 0 + 1 + + east_angle + 3.2044246196746826 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.4199999570846558 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.39999997615814209 + 1 + + haze_density + + 0.68000000715255737 + 0 + 0 + 1 + + haze_horizon + + 0.43999999761581421 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.062790632247924805 + 0 + 0.99802672863006592 + 0 + + max_y + + 859 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 3.2044248580932617 + sunlight_color + + 2.8385701179504395 + 2.8385701179504395 + 2.8385701179504395 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Las%20Legunas.xml b/indra/newview/app_settings/windlight/skies/Places%20Las%20Legunas.xml new file mode 100644 index 000000000..4121f8fa6 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Las%20Legunas.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.7372221946716309 + 1.7699999809265137 + 1.5899999141693115 + 1.7999999523162842 + + blue_density + + 0.5 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.31999999284744263 + 0.2800000011920929 + 0.37999999523162842 + 0.37999999523162842 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.8399999737739563 + 0.5899999737739563 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.17000000178813934 + 0 + 0 + 1 + + density_multiplier + + 0.00033999999868683517 + 0 + 0 + 1 + + distance_multiplier + + 4.0999999046325684 + 0 + 0 + 1 + + east_angle + 0.56548666954040527 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.94999998807907104 + 0 + 0 + 1 + + glow + + 11.600000381469727 + 0.0010000000474974513 + -2.2999999523162842 + 1 + + haze_density + + 1.9199999570846558 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.38828861713409424 + 0.68911367654800415 + -0.61184495687484741 + 0 + + max_y + + 403 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.3813273906707764 + sunlight_color + + 1.4399999380111694 + 1.4699999094009399 + 1.4399999380111694 + 1.4699999094009399 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Legacies.xml b/indra/newview/app_settings/windlight/skies/Places%20Legacies.xml new file mode 100644 index 000000000..a8284bb2a --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Legacies.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.32999998331069946 + 0.32999998331069946 + 0.32999998331069946 + 0.10999999940395355 + + blue_density + + 0.19999998807907104 + 0.39999699592590332 + 1.0199999809265137 + 1.0199999809265137 + + blue_horizon + + 0.16199998557567596 + 0.76855206489562988 + 0.89999997615814209 + 0.44999998807907104 + + cloud_color + + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + 0.69999998807907104 + + cloud_pos_density1 + + 0.5 + 0.5 + 0.53999996185302734 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.29999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.39999997615814209 + 0 + 0 + 1 + + density_multiplier + + 0.00039999998989515007 + 0 + 0 + 1 + + distance_multiplier + + 14.199999809265137 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.2799999713897705 + 0 + 0 + 1 + + glow + + 3.7999999523162842 + 0.0010000000474974513 + -0.39999997615814209 + 1 + + haze_density + + 3.8599998950958252 + 0 + 0 + 1 + + haze_horizon + + 0.77999997138977051 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 0.99715888500213623 + -0.07532694935798645 + 0 + + max_y + + 1745 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 1.6461946964263916 + sunlight_color + + 0.53999996185302734 + 0.53999996185302734 + 0.53999996185302734 + 0.17999999225139618 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Midian.xml b/indra/newview/app_settings/windlight/skies/Places%20Midian.xml new file mode 100644 index 000000000..40a34a4a9 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Midian.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.85248766300455259 + 0.69348653809556993 + 0.71145841248196007 + 0.83318269234937503 + + blue_density + + 0.20779243499502797 + 0.41026214234642566 + 0.72814986965084927 + 1 + + blue_horizon + + 0.13484086845960519 + 0.21892986884401466 + 0.24794709491764877 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00029999998514540493 + 0 + 0 + 1 + + distance_multiplier + + 4.0999999046325684 + 0 + 0 + 1 + + east_angle + 6.2831854820251465 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.3500000238418579 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 1.3774588671593051 + 0 + 0 + 1 + + haze_horizon + + 0.29999998211860657 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 1.7484556735780643e-007 + 0 + -1 + 0 + + max_y + + 564 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0.41058114171028137 + sun_angle + 3.2044248580932617 + sunlight_color + + 2.3274268943138168 + 2.3288588977004565 + 2.3913246215581694 + 0.83987117651068388 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Mother.xml b/indra/newview/app_settings/windlight/skies/Places%20Mother.xml new file mode 100644 index 000000000..753cf0706 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Mother.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.71999996900558472 + 0.54638898372650146 + 0.58705025911331177 + 0.71999996900558472 + + blue_density + + 0.28678349408657766 + 0.42322183665254443 + 0.63743695308465931 + 1 + + blue_horizon + + 0.16913637525681224 + 0.22580146354854946 + 0.24535531286049661 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.70999997854232788 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.20999999344348907 + 0.125 + 1 + + cloud_scale + + 0.3399999737739563 + 0 + 0 + 1 + + cloud_scroll_rate + + 8.6099996566772461 + 6.2799997329711914 + + cloud_shadow + + 0.23999999463558197 + 0 + 0 + 1 + + density_multiplier + + 0.00031999999191612005 + 0 + 0 + 1 + + distance_multiplier + + 40.5 + 0 + 0 + 1 + + east_angle + 1.8849555253982544 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.7599999904632568 + 0 + 0 + 1 + + glow + + 5.7999992370605469 + 0.0010000000474974513 + -1.1000000238418579 + 1 + + haze_density + + 2.2327472009226881 + 0 + 0 + 1 + + haze_horizon + + 0.085684981703968377 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.60160976648330688 + 0.77450323104858398 + -0.19547481834888458 + 1 + + max_y + + 644 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0.92893773317337036 + sun_angle + 4.027522087097168 + sunlight_color + + 2.624443531036377 + 2.6294984817504883 + 2.8499999046325684 + 0.94999998807907104 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Old%20New%20York.xml b/indra/newview/app_settings/windlight/skies/Places%20Old%20New%20York.xml new file mode 100644 index 000000000..df356084b --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Old%20New%20York.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.56999999284744263 + 0.59999996423721313 + 0.71999996900558472 + 0.71999996900558472 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.23999999463558197 + 0.30000001192092896 + 0.35131001472473145 + 0.37999999523162842 + + cloud_color + + 0.12862999737262726 + 0.12862999737262726 + 0.12862999737262726 + 1 + + cloud_pos_density1 + + 0.88419097661972046 + 0.53047597408294678 + 0.4270470142364502 + 1 + + cloud_pos_density2 + + 0.38419300317764282 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10 + 10 + + cloud_shadow + + 0.61711597442626953 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 18.899999618530273 + 0 + 0 + 1 + + east_angle + 5.4035391807556152 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6899999380111694 + 0 + 0 + 1 + + glow + + 4.4000005722045898 + 0.0012815999798476696 + -0.64999997615814209 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.17000000178813934 + 0.21744099259376526 + 0.21744099259376526 + 1 + + lightnorm + + 0.76102709770202637 + 0.15643447637557983 + 0.62957614660263062 + 0 + + max_y + + 4000 + 0 + 0 + 1 + + preset_num + 2 + star_brightness + 0.65999996662139893 + sun_angle + 0.15707963705062866 + sunlight_color + + 1.3199999332427979 + 0.69959986209869385 + 0.71279996633529663 + 0.43999999761581421 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Paris%202.xml b/indra/newview/app_settings/windlight/skies/Places%20Paris%202.xml new file mode 100644 index 000000000..431ee1867 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Paris%202.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.85248766300455259 + 0.69348653809556993 + 0.71145841248196007 + 0.83318269234937503 + + blue_density + + 0.20779243499502797 + 0.41026214234642566 + 0.72814986965084927 + 1 + + blue_horizon + + 0.13484086845960519 + 0.21892986884401466 + 0.24794709491764877 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.34999999403953552 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.31999999284744263 + 0 + 0 + 1 + + density_multiplier + + 0.00029999998514540493 + 0 + 0 + 1 + + distance_multiplier + + 4.0999999046325684 + 0 + 0 + 1 + + east_angle + 3.0787608623504639 + enable_cloud_scroll + + 1 + 1 + + gamma + + 2.1599998474121094 + 0 + 0 + 1 + + glow + + 8.4000015258789063 + 0.0010000000474974513 + -0.34999999403953552 + 1 + + haze_density + + 1.3774588671593051 + 0 + 0 + 1 + + haze_horizon + + 0.29999998211860657 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.062790460884571075 + 0 + 0.99802672863006592 + 0 + + max_y + + 564 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0.41058114171028137 + sun_angle + 3.2044248580932617 + sunlight_color + + 2.3274268943138168 + 2.3288588977004565 + 2.3913246215581694 + 0.83987117651068388 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Paris.xml b/indra/newview/app_settings/windlight/skies/Places%20Paris.xml new file mode 100644 index 000000000..ebd2970c9 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Paris.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.2300000190734863 + 1.0553969144821167 + 1.0920002460479736 + 1.2300000190734863 + + blue_density + + 0.57999998331069946 + 0.59999996423721313 + 0.77111077308654785 + 0.55220913887023926 + + blue_horizon + + 0.29999998211860657 + 0.41715732216835022 + 0.53167486190795898 + 0.65999996662139893 + + cloud_color + + 0.35893553611745688 + 0.35893553611745688 + 0.35893553611745688 + 0.57387644052505493 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.96666919575807242 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999999993404913 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.283160487214445 + 10.010999818490745 + + cloud_shadow + + 0.23999999463558197 + 0 + 0 + 1 + + density_multiplier + + 7.0000001869630069e-005 + 0 + 0 + 1 + + distance_multiplier + + 2 + 0 + 0 + 1 + + east_angle + 3.8955750465393066 + enable_cloud_scroll + + 1 + 1 + + gamma + + 2.2300000190734863 + 0 + 0 + 1 + + glow + + 7.4000000953674316 + 0.0010000000474974513 + -0 + 1 + + haze_density + + 1.0499999523162842 + 0 + 0 + 1 + + haze_horizon + + 0.37999999523162842 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.68454724550247192 + 0 + 0.72896856069564819 + 0 + + max_y + + 268 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 3.2044248580932617 + sunlight_color + + 1.3187105655670166 + 1.3529220819473267 + 1.7100000381469727 + 1.7100000381469727 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Pathfinder.xml b/indra/newview/app_settings/windlight/skies/Places%20Pathfinder.xml new file mode 100644 index 000000000..43e69daea --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Pathfinder.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.47999998927116394 + 0.39111119508743286 + 0.31999999284744263 + 0.47999998927116394 + + blue_density + + 0.059999998658895493 + 0.059999998658895493 + 0.059999998658895493 + 0.029999999329447746 + + blue_horizon + + 1.8600000143051147 + 0.47999998927116394 + 0.47999998927116394 + 1.8600000143051147 + + cloud_color + + 0.28999999165534973 + 0.28999999165534973 + 0.31999999284744263 + 0.31999999284744263 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 9.9299993515014648 + + cloud_shadow + + 0.32999998331069946 + 0 + 0 + 1 + + density_multiplier + + 0.00019999999494757503 + 0 + 0 + 1 + + distance_multiplier + + 3.4000000953674316 + 0 + 0 + 1 + + east_angle + 1.8849555253982544 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.74000000953674316 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 2.809999942779541 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.87044608592987061 + 0.4029063880443573 + 0.28282502293586731 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7269024848937988 + sunlight_color + + 1.8600000143051147 + 1.7699999809265137 + 1.6537500619888306 + 1.8600000143051147 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Sand.xml b/indra/newview/app_settings/windlight/skies/Places%20Sand.xml new file mode 100644 index 000000000..da66198d5 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Sand.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.59999996423721313 + 0.4888889491558075 + 0.40000000596046448 + 0.19999998807907104 + + blue_density + + 2 + 0.97999995946884155 + 0.97999995946884155 + 2 + + blue_horizon + + 0.71999996900558472 + 0.50086963176727295 + 0.50086963176727295 + 0.35999998450279236 + + cloud_color + + 0.28999999165534973 + 0.28999999165534973 + 0.31999999284744263 + 0.31999999284744263 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 9.9299993515014648 + + cloud_shadow + + 0.32999998331069946 + 0 + 0 + 1 + + density_multiplier + + 0.00031000000308267772 + 0 + 0 + 1 + + distance_multiplier + + 6.8000001907348633 + 0 + 0 + 1 + + east_angle + 5.6548666954040527 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.1499999761581421 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.53796529769897461 + 0.4029063880443573 + -0.74044561386108398 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7269024848937988 + sunlight_color + + 2.25 + 1.8899999856948853 + 1.6800000667572021 + 2.25 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Terre%20Des%20Mortes.xml b/indra/newview/app_settings/windlight/skies/Places%20Terre%20Des%20Mortes.xml new file mode 100644 index 000000000..00ae35765 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Terre%20Des%20Mortes.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.21000000834465027 + 0.26999998092651367 + 0.35999998450279236 + 0.35999998450279236 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.25999999046325684 + 0.29999998211860657 + 0.37999999523162842 + 0.37999999523162842 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00076999998418614268 + 0 + 0 + 1 + + distance_multiplier + + 16.899999618530273 + 0 + 0 + 1 + + east_angle + 4.0840702056884766 + enable_cloud_scroll + + 1 + 1 + + gamma + + 0.74000000953674316 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.63296741247177124 + 0.6227877140045166 + 0.45987796783447266 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.4692919254302979 + sunlight_color + + 1.4399999380111694 + 1.4399999380111694 + 1.4399999380111694 + 0.47999998927116394 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Urbania.xml b/indra/newview/app_settings/windlight/skies/Places%20Urbania.xml new file mode 100644 index 000000000..4aed800ea --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Urbania.xml @@ -0,0 +1,141 @@ + + + ambient + + 0 + 0.029999997466802597 + 0 + 0.029999999329447746 + + blue_density + + 0.29999998211860657 + 0.29999998211860657 + 0.29999998211860657 + 0.14999999105930328 + + blue_horizon + + 0.39999997615814209 + 0.17142856121063232 + 0 + 0.39999997615814209 + + cloud_color + + 0.29999998211860657 + 0.34999999403953552 + 0.029999999329447746 + 0.34999999403953552 + + cloud_pos_density1 + + 0.85999995470046997 + 0.42999997735023499 + 0.45999997854232788 + 1 + + cloud_pos_density2 + + 1 + 1 + 0.099999994039535522 + 1 + + cloud_scale + + 0.14000000059604645 + 0 + 0 + 1 + + cloud_scroll_rate + + 9.644780158996582 + 10.423800468444824 + + cloud_shadow + + 0.2800000011920929 + 0 + 0 + 1 + + density_multiplier + + 0.00058999995235353708 + 0 + 0 + 1 + + distance_multiplier + + 20.30000114440918 + 0 + 0 + 1 + + east_angle + 1.2566369771957397 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.9599999189376831 + 0 + 0 + 1 + + glow + + 8.8000011444091797 + 0.0013735899701714516 + -0.94999998807907104 + 1 + + haze_density + + 1.7300000190734863 + 0 + 0 + 1 + + haze_horizon + + 0.45999997854232788 + 0.13210900127887726 + 0.13210900127887726 + 1 + + lightnorm + + -0.95105648040771484 + 0 + 0.30901706218719482 + 0 + + max_y + + 1450 + 0 + 0 + 1 + + preset_num + 5 + star_brightness + 2 + sun_angle + 0 + sunlight_color + + 1.2300000190734863 + 0.82000011205673218 + 0 + 0.40999999642372131 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20Wiccan.xml b/indra/newview/app_settings/windlight/skies/Places%20Wiccan.xml new file mode 100644 index 000000000..7e220c9ff --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20Wiccan.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.71999996900558472 + 0.54638898372650146 + 0.58705025911331177 + 0.71999996900558472 + + blue_density + + 0.28678349408657766 + 0.42322183665254443 + 0.63743695308465931 + 1 + + blue_horizon + + 0.16913637525681224 + 0.22580146354854946 + 0.24535531286049661 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.70999997854232788 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.20999999344348907 + 0.125 + 1 + + cloud_scale + + 0.3399999737739563 + 0 + 0 + 1 + + cloud_scroll_rate + + 8.6099996566772461 + 6.2799997329711914 + + cloud_shadow + + 0.23999999463558197 + 0 + 0 + 1 + + density_multiplier + + 0.00038568499229132969 + 0 + 0 + 1 + + distance_multiplier + + 0.53555402121232365 + 0 + 0 + 1 + + east_angle + 6.2831854820251465 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.6899999380111694 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 2.2327472009226881 + 0 + 0 + 1 + + haze_horizon + + 0.085684981703968377 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -1.6790306744951522e-007 + 0.27899131178855896 + 0.96029365062713623 + 1 + + max_y + + 722.13795372575987 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0.92893773317337036 + sun_angle + 3.4243361949920654 + sunlight_color + + 2.624443531036377 + 2.6294984817504883 + 2.8499999046325684 + 0.94999998807907104 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%20alirium.xml b/indra/newview/app_settings/windlight/skies/Places%20alirium.xml new file mode 100644 index 000000000..6bed05a85 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%20alirium.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.26999998092651367 + 0.21000000834465027 + 0.08999999612569809 + 0.26999998092651367 + + blue_density + + 0.47886797785758972 + 0.90452831983566284 + 0.93999999761581421 + 0.4699999988079071 + + blue_horizon + + 0.28636360168457031 + 0.36272725462913513 + 0.41999998688697815 + 0.20999999344348907 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.10999999940395355 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.800000190734863 + 10.01099967956543 + + cloud_shadow + + 0.22999998927116394 + 0 + 0 + 1 + + density_multiplier + + 0.00013000000035390258 + 0 + 0 + 1 + + distance_multiplier + + 6.8000001907348633 + 0 + 0 + 1 + + east_angle + 4.2725663185119629 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.7599999904632568 + 0 + 0 + 1 + + glow + + 16.600000381469727 + 0.0010000000474974513 + -0.24999998509883881 + 1 + + haze_density + + 1.1899999380111694 + 0 + 0 + 1 + + haze_horizon + + 0.2199999988079071 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.84336334466934204 + 0.36227512359619141 + 0.39685636758804321 + 0 + + max_y + + 564 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 2.4600000381469727 + 2.4600000381469727 + 2.4600000381469727 + 0.81999999284744263 + + + diff --git a/indra/newview/app_settings/windlight/skies/Places%2DEmbryo.xml b/indra/newview/app_settings/windlight/skies/Places%2DEmbryo.xml new file mode 100644 index 000000000..66d490aa9 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Places%2DEmbryo.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.35999998450279236 + 0.23999999463558197 + 0 + 0.35999998450279236 + + blue_density + + 0.15999999642372131 + 0.15999999642372131 + 0.15999999642372131 + 0.079999998211860657 + + blue_horizon + + 0.19999998807907104 + 0.19999998807907104 + 0.19999998807907104 + 0.099999994039535522 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + + cloud_pos_density1 + + 0.53999996185302734 + 0.50999999046325684 + 0.2199999988079071 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.039999999105930328 + 1 + + cloud_scale + + 0.15999999642372131 + 0 + 0 + 1 + + cloud_scroll_rate + + 20 + 20 + + cloud_shadow + + 0.68000000715255737 + 0 + 0 + 1 + + density_multiplier + + 0.00020999999833293259 + 0 + 0 + 1 + + distance_multiplier + + 23 + 0 + 0 + 1 + + east_angle + 2.2619466781616211 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.94999998807907104 + 0 + 0 + 1 + + glow + + 20 + 0.0010000000474974513 + 0 + 1 + + haze_density + + 4 + 0 + 0 + 1 + + haze_horizon + + 0.17000000178813934 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0.70520544052124023 + 0.4029063880443573 + 0.58339667320251465 + 0 + + max_y + + 322 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 0 + sun_angle + 2.7269024848937988 + sunlight_color + + 0.71999996900558472 + 0.71999996900558472 + 0.71999996900558472 + 0.23999999463558197 + + + diff --git a/indra/newview/app_settings/windlight/skies/StrawberrySingh%2Ecom%20%2D%20Closeups.xml b/indra/newview/app_settings/windlight/skies/StrawberrySingh%2Ecom%20%2D%20Closeups.xml new file mode 100644 index 000000000..d9a45e832 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/StrawberrySingh%2Ecom%20%2D%20Closeups.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.9524954557418823 + 2.0699999332427979 + 2.059481143951416 + 0.68999999761581421 + + blue_density + + 2 + 2 + 2 + 1 + + blue_horizon + + 1.5 + 1.5 + 1.5 + 0.75 + + cloud_color + + 0.40999999642372131 + 0.40999999642372131 + 0.40999999642372131 + 0.40999999642372131 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 1 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.199999809265137 + 10.01099967956543 + + cloud_shadow + + 0.12999999523162842 + 0 + 0 + 1 + + density_multiplier + + 0.0002899999963119626 + 0 + 0 + 1 + + distance_multiplier + + 0 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1.2599999904632568 + 0 + 0 + 1 + + glow + + 10.199999809265137 + 0.0010000000474974513 + -1.3999999761581421 + 1 + + haze_density + + 1.0099999904632568 + 0 + 0 + 1 + + haze_horizon + + 0.5 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0 + 0 + 1 + 0 + + max_y + + 493 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 0 + sunlight_color + + 1.5299999713897705 + 1.5299999713897705 + 1.5299999713897705 + 0.50999999046325684 + + + diff --git a/indra/newview/app_settings/windlight/skies/Sunrise.xml b/indra/newview/app_settings/windlight/skies/Sunrise.xml new file mode 100644 index 000000000..bbc7aeec5 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Sunrise.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.80999994277954102 + 0.46289783716201782 + 0.62999993562698364 + 0.26999998092651367 + + blue_density + + 0.15793180465698242 + 0.43499568104743958 + 0.87000000476837158 + 0.87000000476837158 + + blue_horizon + + 0.20673196017742157 + 0.40988314151763916 + 0.47999998927116394 + 0.47999998927116394 + + cloud_color + + 0.22616604226328718 + 0.22616604226328718 + 0.22616604226328718 + 0.99997219085526012 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.88000025272481253 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013883861 + 10.010999679576344 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00062000000616535544 + 0 + 0 + 1 + + distance_multiplier + + 2.6999279499073054 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5.0009990693069994 + 0.0010000000474963411 + -0.48000101923815919 + 1 + + haze_density + + 0.53999996185302734 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 0.094108223915100098 + 0.99556195735931396 + 0 + + max_y + + 563 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 0.094247691333293915 + sunlight_color + + 2.369999885559082 + 2.369999885559082 + 2.369999885559082 + 0.78999996185302734 + + + diff --git a/indra/newview/app_settings/windlight/skies/Sunset%20Pink%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Sunset%20Pink%20%28Paulina%29.xml new file mode 100644 index 000000000..9b5b74f03 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Sunset%20Pink%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.65999996662139893 + 0.30564266443252563 + 0.31655827164649963 + 0.2199999988079071 + + blue_density + + 1.1599999666213989 + 0.59999996423721313 + 1.3199999332427979 + 1.3199999332427979 + + blue_horizon + + 0.71153849363327026 + 0.74000000953674316 + 0.74000000953674316 + 0.37000000476837158 + + cloud_color + + 0 + 0 + 0.0099999997764825821 + 0.0099999997764825821 + + cloud_pos_density1 + + 0.53999996185302734 + 0.50999999046325684 + 0.23999999463558197 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.059999998658895493 + 1 + + cloud_scale + + 0.15999999642372131 + 0 + 0 + 1 + + cloud_scroll_rate + + 20 + 20 + + cloud_shadow + + 0.2199999988079071 + 0 + 0 + 1 + + density_multiplier + + 4.9999998736893758e-005 + 0 + 0 + 1 + + distance_multiplier + + 8.1000003814697266 + 0 + 0 + 1 + + east_angle + 3.5185837745666504 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.61000001430511475 + 0 + 0 + 1 + + glow + + 0.59999942779541016 + 0.0010000000474974513 + -0.59999996423721313 + 1 + + haze_density + + 1.8600000143051147 + 0 + 0 + 1 + + haze_horizon + + 0.76999998092651367 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + -0.36805915832519531 + 0.01884840801358223 + 0.92961132526397705 + 0 + + max_y + + 2443 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.8600000143051147 + sun_angle + 3.1227431297302246 + sunlight_color + + 1.1999999284744263 + 0.7486223578453064 + 0.39302670955657959 + 1.1999999284744263 + + + diff --git a/indra/newview/app_settings/windlight/skies/Sunset.xml b/indra/newview/app_settings/windlight/skies/Sunset.xml new file mode 100644 index 000000000..ebf08e1a3 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Sunset.xml @@ -0,0 +1,142 @@ + + + ambient + + 1.0199999809265137 + 0.80999994277954102 + 0.80999994277954102 + 1.0199999809265137 + + blue_density + + 0.14522500336170197 + 0.39999699592590332 + 0.80000197887420654 + 1 + + blue_horizon + + 0.10767599940299988 + 0.21348699927330017 + 0.25 + 1 + + cloud_color + + 0.22615399956703186 + 0.22615399956703186 + 0.22615399956703186 + 1 + + cloud_pos_density1 + + 1.6884100437164307 + 0.52609699964523315 + 0.87999999523162842 + 1 + + cloud_pos_density2 + + 1.6884100437164307 + 0.52609699964523315 + 0.125 + 1 + + cloud_scale + + 0.41999998688697815 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.26999998092651367 + 0 + 0 + 1 + + density_multiplier + + 0.00046000001020729542 + 0 + 0 + 1 + + distance_multiplier + + 1 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.47999998927116394 + 1 + + haze_density + + 0.69999998807907104 + 0 + 0 + 1 + + haze_horizon + + 0.15999999642372131 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 0.07532646507024765 + -0.99715894460678101 + 0 + + max_y + + 562.5 + 0 + 0 + 1 + + preset_num + 22 + star_brightness + 0 + sun_angle + 3.0661947727203369 + sunlight_color + + 2.8385701179504395 + 2.8385701179504395 + 2.8385701179504395 + 1 + + + + diff --git a/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Brazil%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Brazil%20%28Paulina%29.xml new file mode 100644 index 000000000..97044da7b --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Brazil%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.5 + 2.2799999713897705 + 0.93000000715255737 + 2.2799999713897705 + + blue_density + + 1.2799999713897705 + 1.2999999523162842 + 1.3999999761581421 + 1.3999999761581421 + + blue_horizon + + 1 + 1.1200000047683716 + 0.068059712648391724 + 1.1200000047683716 + + cloud_color + + 0.52756190160579308 + 0.52756190160579308 + 0.52756190160579308 + 1 + + cloud_pos_density1 + + 0.72999995946884155 + 0.34000000357627869 + 0.32999998331069946 + 1 + + cloud_pos_density2 + + 0.28999999165534973 + 0.84999996423721313 + 0.019999999552965164 + 1 + + cloud_scale + + 0.32999998058761548 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499399946934318 + 10.010999746491507 + + cloud_shadow + + 0.34999999403953552 + 0 + 0 + 1 + + density_multiplier + + 5.999999848427251e-005 + 0 + 0 + 1 + + distance_multiplier + + 12.800000190734863 + 0 + 0 + 1 + + east_angle + 3.8327431678771973 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.14000000059604645 + 0 + 0 + 1 + + glow + + 10 + 0.0010000000474974513 + -1.0499999523162842 + 1 + + haze_density + + 0.18999999761581421 + 0 + 0 + 1 + + haze_horizon + + 0.5899999737739563 + 0.19915598630905151 + 0.19915598630905151 + 1 + + lightnorm + + -0.60370332002639771 + 0.32094338536262512 + 0.72975176572799683 + 0 + + max_y + + 537 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2200000286102295 + sun_angle + 2.8148672580718994 + sunlight_color + + 3 + 2.3461534976959229 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Fire%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Fire%20%28Paulina%29.xml new file mode 100644 index 000000000..5519f5ec9 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Fire%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 3 + 3 + 3 + + blue_density + + 0.89999997615814209 + 0 + 0.41999998688697815 + 0.89999997615814209 + + blue_horizon + + 1.4800000190734863 + 1.6799999475479126 + 2 + 2 + + cloud_color + + 0.52756190160579308 + 0.52756190160579308 + 0.52756190160579308 + 1 + + cloud_pos_density1 + + 0.72999995946884155 + 0.34000000357627869 + 0.32999998331069946 + 1 + + cloud_pos_density2 + + 0.28999999165534973 + 0.84999996423721313 + 0.019999999552965164 + 1 + + cloud_scale + + 0.32999998058761548 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499399946934318 + 10.010999746491507 + + cloud_shadow + + 0.28999999165534973 + 0 + 0 + 1 + + density_multiplier + + 0.00020999999833293259 + 0 + 0 + 1 + + distance_multiplier + + 8.1000003814697266 + 0 + 0 + 1 + + east_angle + 3.2044246196746826 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.070000000298023224 + 0 + 0 + 1 + + glow + + 3.0000019073486328 + 0.0010000000474974513 + -1.0499999523162842 + 1 + + haze_density + + 2.8899998664855957 + 0 + 0 + 1 + + haze_horizon + + 0.62000000476837158 + 0.19915598630905151 + 0.19915598630905151 + 1 + + lightnorm + + 0.061363283544778824 + 0.21200713515281677 + -0.97533971071243286 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2200000286102295 + sun_angle + 0.21362832188606262 + sunlight_color + + 3 + 3 + 3 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Flirt%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Flirt%20%28Paulina%29.xml new file mode 100644 index 000000000..70dd0d106 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Flirt%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 3 + 3 + 3 + + blue_density + + 1 + 0 + 0.41999998688697815 + 1 + + blue_horizon + + 1.4399999380111694 + 2 + 2 + 2 + + cloud_color + + 0.52756190160579308 + 0.52756190160579308 + 0.52756190160579308 + 1 + + cloud_pos_density1 + + 0.72999995946884155 + 0.34000000357627869 + 0.32999998331069946 + 1 + + cloud_pos_density2 + + 0.28999999165534973 + 0.84999996423721313 + 0.019999999552965164 + 1 + + cloud_scale + + 0.32999998058761548 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499399946934318 + 10.010999746491507 + + cloud_shadow + + 0.28999999165534973 + 0 + 0 + 1 + + density_multiplier + + 0.0006399999838322401 + 0 + 0 + 1 + + distance_multiplier + + 5.4000000953674316 + 0 + 0 + 1 + + east_angle + 1.8221237659454346 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.070000000298023224 + 0 + 0 + 1 + + glow + + 2.2000002861022949 + 0.0010000000474974513 + -1.4499999284744263 + 1 + + haze_density + + 2.8899998664855957 + 0 + 0 + 1 + + haze_horizon + + 0.62000000476837158 + 0.19915598630905151 + 0.19915598630905151 + 1 + + lightnorm + + -0.96764647960662842 + 0.043968122452497482 + -0.2484494149684906 + 0 + + max_y + + 27 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 2 + sun_angle + 0.043982300907373428 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Night%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Night%20%28Paulina%29.xml new file mode 100644 index 000000000..80ee99ef6 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Night%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 3 + 3 + 3 + 3 + + blue_density + + 1 + 0 + 0.41999998688697815 + 1 + + blue_horizon + + 1.4800000190734863 + 1.6799999475479126 + 2 + 2 + + cloud_color + + 0.52756190160579308 + 0.52756190160579308 + 0.52756190160579308 + 1 + + cloud_pos_density1 + + 0.72999995946884155 + 0.34000000357627869 + 0.32999998331069946 + 1 + + cloud_pos_density2 + + 0.28999999165534973 + 0.84999996423721313 + 0.019999999552965164 + 1 + + cloud_scale + + 0.32999998058761548 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499399946934318 + 10.010999746491507 + + cloud_shadow + + 0.28999999165534973 + 0 + 0 + 1 + + density_multiplier + + 0 + 0 + 0 + 1 + + distance_multiplier + + 22.30000114440918 + 0 + 0 + 1 + + east_angle + 1.8221237659454346 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.070000000298023224 + 0 + 0 + 1 + + glow + + 3.0000019073486328 + 0.0010000000474974513 + -1.0499999523162842 + 1 + + haze_density + + 2.8899998664855957 + 0 + 0 + 1 + + haze_horizon + + 0.62000000476837158 + 0.19915598630905151 + 0.19915598630905151 + 1 + + lightnorm + + -0.96764647960662842 + 0.043968122452497482 + -0.2484494149684906 + 0 + + max_y + + 1289 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2200000286102295 + sun_angle + 0.043982300907373428 + sunlight_color + + 3 + 3 + 3 + 1 + + + diff --git a/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Summer%20%28Paulina%29.xml b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Summer%20%28Paulina%29.xml new file mode 100644 index 000000000..6929904cc --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/Surreal%20%2D%20Summer%20%28Paulina%29.xml @@ -0,0 +1,141 @@ + + + ambient + + 1.5 + 2.2799999713897705 + 0.93000000715255737 + 2.2799999713897705 + + blue_density + + 1.4800000190734863 + 1.4399999380111694 + 2 + 2 + + blue_horizon + + 1.2400000095367432 + 1.1399999856948853 + 0.71999996900558472 + 1.2799999713897705 + + cloud_color + + 0.2199999988079071 + 0.23999999463558197 + 0.68999999761581421 + 0.68999999761581421 + + cloud_pos_density1 + + 0.72999995946884155 + 0.34000000357627869 + 0.32999998331069946 + 1 + + cloud_pos_density2 + + 0.28999999165534973 + 0.84999996423721313 + 0.019999999552965164 + 1 + + cloud_scale + + 0.42999997735023499 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.499399946934318 + 10.010999746491507 + + cloud_shadow + + 0.65999996662139893 + 0 + 0 + 1 + + density_multiplier + + 1.9999999494757503e-005 + 0 + 0 + 1 + + distance_multiplier + + 15.5 + 0 + 0 + 1 + + east_angle + 4.1469020843505859 + enable_cloud_scroll + + 0 + 0 + + gamma + + 0.14000000059604645 + 0 + 0 + 1 + + glow + + 10 + 0.0010000000474974513 + -1.0499999523162842 + 1 + + haze_density + + 1.6999999284744263 + 0 + 0 + 1 + + haze_horizon + + 0.52999997138977051 + 0.19915598630905151 + 0.19915598630905151 + 1 + + lightnorm + + -0.82513469457626343 + 0.21200692653656006 + 0.52364665269851685 + 1 + + max_y + + 456 + 0 + 0 + 1 + + preset_num + 18 + star_brightness + 1.2200000286102295 + sun_angle + 6.0695571899414062 + sunlight_color + + 3 + 1.3499999046325684 + 3 + 3 + + + diff --git a/indra/newview/app_settings/windlight/skies/names.txt b/indra/newview/app_settings/windlight/skies/names.txt new file mode 100644 index 000000000..2d80cde58 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/names.txt @@ -0,0 +1,77 @@ +- Orac - Black fog 1 +- Orac - Black fog 2 +- Orac - Drawing blue +- Orac - Drawing extreme +- Orac - Drawing green +- Orac - Drawing red +- Orac - Drawing underground comic +- Orac - fog +- Orac - gray +- Orac - green +AnaLu - outdoor city night +AnaLutetia - AvatarOpt(2) +AnaLutetia - AvatarOpt2 whiter +AnaLutetia - outdoor +AnaLutetia - Studio Light +AnaLutetia - STUDIO2 +AnaLutetia - STUDIO3 +AnaLutetia-default +AnaLutetia-outdoor2(2) +AnaLutetia +B5-ShadowDancing +CB'%s %Rouge 1 +CB'%s %Rouge 2 +CB'%s %Rouge 3 +CB'%s %Rouge 4 +CB'%s %Rouge 5 +CB'%s %Rouge 6 +Fairy blue (Paulina) +Fairy dark blue (Paulina) +Fairy light pink (Paulina) +Fairy warm pinks (Paulina) +PaperSnow +Places Abracadabra +Places Abracadabra2 +Places Abracadabra3 +Places alirium +Places Annamaria +Places Astryls Wild +Places Babbage +Places Beach Cay Surreal +Places Beach Cay +Places Bentham +Places Cornfield +Places Cromac +Places Crucible +Places District8 +Places Duskwood +Places Eridu +Places Erie +Places Eugene 2 +Places Eugene BL +Places Greed +Places Greed2 +Places Imagine +Places Kingsport +Places Kunming +Places Las Legunas +Places Legacies +Places Midian +Places Mother +Places Old New York +Places Paris 2 +Places Paris +Places Pathfinder +Places Sand +Places Terre Des Mortes +Places Urbania +Places Wiccan +Places-Embryo +StrawberrySingh.com - Closeups +Sunset Pink (Paulina) +Surreal - Brazil (Paulina) +Surreal - Fire (Paulina) +Surreal - Flirt (Paulina) +Surreal - Night (Paulina) +Surreal - Summer (Paulina) +wastelands \ No newline at end of file diff --git a/indra/newview/app_settings/windlight/skies/wastelands.xml b/indra/newview/app_settings/windlight/skies/wastelands.xml new file mode 100644 index 000000000..ffb22cf37 --- /dev/null +++ b/indra/newview/app_settings/windlight/skies/wastelands.xml @@ -0,0 +1,141 @@ + + + ambient + + 0.29999998211860657 + 0.17999999225139618 + 0 + 0.29999998211860657 + + blue_density + + 0.97999995946884155 + 0.97999995946884155 + 0.97999995946884155 + 0.48999997973442078 + + blue_horizon + + 0.31999999284744263 + 0.31999999284744263 + 0.31999999284744263 + 0.15999999642372131 + + cloud_color + + 0.50999999046325684 + 0.50999999046325684 + 0.50999999046325684 + 1 + + cloud_pos_density1 + + 0.5 + 0.5 + 1 + 1 + + cloud_pos_density2 + + 0.5 + 0.5 + 0.125 + 1 + + cloud_scale + + 0.079999998211860657 + 0 + 0 + 1 + + cloud_scroll_rate + + 10.49940013885498 + 10.01099967956543 + + cloud_shadow + + 0.25999999046325684 + 0 + 0 + 1 + + density_multiplier + + 0.00031000000308267772 + 0 + 0 + 1 + + distance_multiplier + + 6.8000001907348633 + 0 + 0 + 1 + + east_angle + 0 + enable_cloud_scroll + + 1 + 1 + + gamma + + 1 + 0 + 0 + 1 + + glow + + 5 + 0.0010000000474974513 + -0.33000001311302185 + 1 + + haze_density + + 1.8899999856948853 + 0 + 0 + 1 + + haze_horizon + + 0.23999999463558197 + 0.19915600121021271 + 0.19915600121021271 + 1 + + lightnorm + + 0 + 0.36227512359619141 + -0.93207120895385742 + 0 + + max_y + + 752 + 0 + 0 + 1 + + preset_num + 21 + star_brightness + 0 + sun_angle + 2.7708849906921387 + sunlight_color + + 1.3799998760223389 + 1.3799998760223389 + 1.3799998760223389 + 0.45999997854232788 + + + \ No newline at end of file diff --git a/indra/newview/skins/default/xui/en-us/strings.xml b/indra/newview/skins/default/xui/en-us/strings.xml index 83db17102..070399959 100644 --- a/indra/newview/skins/default/xui/en-us/strings.xml +++ b/indra/newview/skins/default/xui/en-us/strings.xml @@ -1739,6 +1739,46 @@ llSetObjectPermMask( integer mask, integer value ) Sets the given permission mask to the new value on the root object the task is attached to. (Requires god mode) + +integer llSetMemoryLimit( integer limit ) +Request ''limit'' bytes to be reserved for this script. + + +integer llSetLinkMedia( integer link, integer face, list params ) +Set the media params for a particular face on the linked prim(s) without a delay. + + +list llGetLinkMedia( integer link, integer face, list params ) +Returns a list with the media params for a particular face on a linked prim, given the desired list of named params. + + +integer llClearLinkMedia( integer link, integer face ) +Clears the media and all params from the given face on the linked prim(s). + + +llSetLinkCamera( integer link, vector eye, vector at ) +Sets the camera eye offset, and the offset that the camera is looking at, for avatars that sit on the linked prim. + + +llSetContentType( key request_id, integer content_type ) +Set the Internet media type of an LSL HTTP server response. + + +llLinkSitTarget( integer link, vector offset, rotation rot ); +Set the sit location for the linked prim(s). The sit location is relative to the prim's position and rotation. + + +key llAvatarOnLinkSitTarget( integer link ) +Returns a key that is the UUID of the user seated on the prim. + + + + @@ -2244,4 +2284,62 @@ list lsGetWindlightScene(list rules) Get the current WindLight settings. (Reguires LightShare) + + + +key osNpcSaveAppearance(key npc, string notecardName) +Saves the NPC's appearance to a notecard. +(OpenSim only.) + + +osNpcLoadAppearance(key npc, string notecardName) +Loads the NPC's appearance from a notecard with appearance data. +Notecards can also be loaded by UUID. +(OpenSim only.) + + +osNpcMoveToTarget(key npc, vector position, integer options) +Moves the NPC to a target at a given vector, using options to walk or to fly there. +(OpenSim only.) + + +key osOwnerSaveAppearance(string notecardName) +Saves the owner's appearance to a notecard inside the prim that holds the script. +(OpenSim only.) + + +rotation osNpcGetRot(key npc) +Retrieves the rotation of an NPC +(OpenSim only.) + + +osNpcSetRot(key npc, rotation rot) +Sets an NPC's rotation. +(OpenSim only.) + + +key osOwnerSaveAppearance(key avatarId, string notecardName) +Saves an avatar's appearance to a notecard inside the prim that holds the script. +(OpenSim only.) + + +vector osNpcGetPos(key npc) +Retrieves the vector of an NPC's position within a region. +(OpenSim only.) + + +osNpcStopMoveToTarget(key npc) +Makes an NPC stop moving to a target. +(OpenSim only.) + + +float osGetWindParam(string plugin, string param) +Gets the value of param property for plugin module. +(OpenSim only.) + + +osSetWindParam(string plugin, string param, float value) +Sets value of param property for plugin module. +(OpenSim only.) +