arma3:terrain:v1-60-visual-upgrade-lighting-config
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma3:terrain:v1-60-visual-upgrade-lighting-config [2017/01/12 16:08] – removed not useful link and renamed texture header. snakeman | arma3:terrain:v1-60-visual-upgrade-lighting-config [2024/08/02 21:57] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ArmA 3 Terrain Lighting Visual Upgrade ====== | ====== ArmA 3 Terrain Lighting Visual Upgrade ====== | ||
- | PMCTODO | + | [[https:// |
+ | |||
+ | "ArmA 3 Terrain Lighting Visual Upgrade" | ||
**ArmA 3 v1.60 Visual Upgrade** aka lighting upgrade that broke all user made terrains :) | **ArmA 3 v1.60 Visual Upgrade** aka lighting upgrade that broke all user made terrains :) | ||
Line 15: | Line 17: | ||
Images are 4096 x 4096 resolution and over 2 megabytes each so you have to open them manually.\\ | Images are 4096 x 4096 resolution and over 2 megabytes each so you have to open them manually.\\ | ||
- | Altis: [[http:// | + | Altis: [[https:// |
- | Stratis: [[http:// | + | Stratis: [[https:// |
Pennyworth was kind enought to share his bis altis and stratis satellite images for comparison, thanks. | Pennyworth was kind enought to share his bis altis and stratis satellite images for comparison, thanks. | ||
Line 88: | Line 90: | ||
IceBreakrs image of above config: | IceBreakrs image of above config: | ||
- | {{ http:// | + | {{ https:// |
t-800a [[https:// | t-800a [[https:// | ||
Line 433: | Line 435: | ||
If you are using just bis textures then this is no issue for you as those textures are darkened already, but if you have bright textures of your own then that page is good guide for how to adjust your textures. | If you are using just bis textures then this is no issue for you as those textures are darkened already, but if you have bright textures of your own then that page is good guide for how to adjust your textures. | ||
+ | |||
+ | |||
+ | ====== 08-28-17 Update ====== | ||
+ | |||
+ | **Cre8or Documentation in the A3 # | ||
+ | <code cpp> | ||
+ | class Lighting7 | ||
+ | { | ||
+ | // = 17:05 (on October 10th 2008 - this is 100% dependent on date and time!) | ||
+ | // Parameter syntax: {{R, G, B}, INTENSITY}; | ||
+ | diffuse[] | ||
+ | diffuseCloud[] | ||
+ | ambient[] | ||
+ | ambientCloud[] | ||
+ | ambientMid[] | ||
+ | ambientMidCloud[] | ||
+ | groundReflection[] | ||
+ | // I recommend spawning an Ghosthawk and looking at its underside to see what this does | ||
+ | groundReflectionCloud[] = {{0.40, 0.43, 0.45}, 7.0}; // Same as above | ||
+ | sky[] | ||
+ | skyAroundSun[] | ||
+ | fogColor[] | ||
+ | cloudsColor[] | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | **Further clarification on some parameters provided by Uro:** | ||
+ | |||
+ | diffuse/ | ||
+ | |||
+ | Similarly, ambient/ | ||
+ | |||
+ | bidirect[] = {}; is the light from the opposite direction than the sun. This value is not a part of the LightingNew classes | ||
+ | |||
+ | also one important factor for immersion is the fogColour array, it defines the fog colour with a few caveats. the skycolour param will have an effect on the colour of the fog you end up with so your actual fog colour will be a blend of the 2 parameters. The fogcolour also has an effect on the horizont line, where the VD ends it ceates a gradient that blends into the sky, so if for example you completely disable fogcolor it still effects how the skybox is drawn overall. | ||
+ | |||
+ | **Conversation regarding the use of each lighting class and what purpose they serve:** | ||
+ | |||
+ | Rylan: So, in the " | ||
+ | Ice: @Rylan @Cre8or posted this the other day, did you see it?\\ | ||
+ | Rylan: @Ice I did, but that doesn' | ||
+ | |||
+ | Cre8or: @Rylan IIRC there are 45 of them, divided into 4 categories.\\ | ||
+ | The first 3 categories cover a full day/night cycle each, but at different overcast values (0.25, 0.6, 0.8).\\ | ||
+ | Each set encompasses 13 classes, the first one ranging from Lighting0 to Lighting12.\\ | ||
+ | Each of these classes covers a different sun angle, between each angle the engine interpolates between the neighboring classes.\\ | ||
+ | Currently, the sun angles of all 13 classes are as follows: | ||
+ | |||
+ | Lighting0 | ||
+ | Lighting1 | ||
+ | Lighting2 | ||
+ | Lighting3 | ||
+ | Lighting4 | ||
+ | Lighting5 | ||
+ | Lighting6 | ||
+ | Lighting7 | ||
+ | Lighting8 | ||
+ | Lighting9 | ||
+ | Lighting10 | ||
+ | Lighting11 | ||
+ | Lighting12 | ||
+ | |||
+ | Then, from Lighting13 to Lighting25, the cycle repeats, and then again from 26 to 38. As for the remaining classes (39 to 44), I'm not entirely sure, but it seems like they handle the underwater lighting. | ||
+ | |||
+ | **Cre8or' | ||
+ | |||
+ | The way I established what time of day goes with each lighting class was indeed trial and error, as the classes are indeed tied to multiple factors, such as the terrain' | ||
+ | |||
+ | When I started, I picked a date/month that gave me the amount of sunlight in a full day that I wanted - in my case, October 10th did the trick | ||
+ | |||
+ | Next, I wanted to know which time of day was the closest to each of my lighting classes | ||
+ | |||
+ | So I went in all of the classes and changed the sunOrMoon parameter to 0, except for one class (where I changed it to 1) | ||
+ | |||
+ | Then I simply cycled through the time of day until I found the hour/time where the environment was the brightest, and I wrote that time down as a comment next to the lighting class | ||
+ | |||
+ | **Mondkalb' | ||
+ | |||
+ | The classes are not tied to hours in the day, but instead to combinations of sunAngle and overcast. | ||
+ | |||
+ | This way your lighting stays consistent, but the days will be longer or shorter depending on the seasons. | ||
+ | |||
+ | **Mondkalb' | ||
+ | |||
+ | I have my lighting configs divided into three .hpps, each with 13 lightings and one extra for the underwater stuff sorted into the three overcast levels: 25, 60, 85 | ||
+ | |||
+ | **Conversation regarding lighting configuration being affected by terrain coordinates: | ||
+ | |||
+ | Rylan: What determines which classes apply to what coordinates? | ||
+ | |||
+ | Mondkalb: The engine' | ||
+ | |||
+ | Mondkalb: I havent checked in ArmA 3, but in all games from OFP to ArmA 2, the sky was correctly modelled depending on where the map placed you in the world. S/N hemi | ||
+ | |||
+ | Additionally, | ||
+ | |||
+ | Rylan: How should I insert this into the document? | ||
+ | |||
+ | Mondkalb: Via config you control this through the " | ||
+ | <code cpp> | ||
+ | class myTerrain : CAWorld | ||
+ | { | ||
+ | latitude = -51; | ||
+ | longitude = 11; | ||
+ | }; | ||
+ | </ | ||
+ | Rylan: How could you find out which lighting classes those coordinates would use? | ||
+ | |||
+ | Mondkalb: Trial and error. | ||
+ | |||
+ | Lighting 0-10 = day/night w/ clear sky\\ | ||
+ | Lighting 11-21 = day/night w/ overcast sky\\ | ||
+ | Lighting 22-71 address lighting underwater at specific depths governed by the " | ||
+ | |||
+ | Also when in-game all lighting values (diffuse light, ambient light) will remain the same from overcast 0 - 0.4. | ||
+ |
arma3/terrain/v1-60-visual-upgrade-lighting-config.1484237290.txt.gz · Last modified: 2017/01/12 16:08 by snakeman