arma:modeling:shadows
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma:modeling:shadows [2007/07/04 11:14] – created shadows initial page snakeman | arma:modeling:shadows [2024/08/01 10:00] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Shadows ====== | + | ====== |
- | Tutorial by Skaven | + | [[https:// |
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
+ | |||
+ | Used for HW shadow casting. The shadows are cast from this LOD on resolution LOD surfaces. The shadow volume area is made by extruding the lit faces of the shadow LOD (faces that have normals oriented towards the light) in the light direction. | ||
+ | |||
+ | LOD should be as simple as possible, to represent the 1st LOD shape and all its important parts. The shape should not exceed 1st LOD volume. Maximum poly count for shadowVolume is 1000 triangles. | ||
+ | |||
+ | All components must be Closed (each edge must have 2 neighbor polygons) – check with Structure -> Topology -> findNonClosed. Normals can be oriented both ways, depending on desired purpose of the specific shadow LOD surface/ | ||
+ | |||
+ | All faces must be Triangulated (each polygon must have 3 edges) - use menu Structure -> Triangulate | ||
+ | |||
+ | All edges must be sharp – menu Surfaces -> SharpEdge (U) | ||
+ | |||
+ | LOD must be named ShadowVolume 0.000, ShadowVolume 10.000 or ShadowVolume 1000.000 | ||
+ | |||
+ | * Shadow volume 0 is the main stencil shadow. It should have less than 1000 triangles. | ||
+ | * Shadow Volume 10 is optimized stencil shadow LOD with as few triangles as possible. | ||
+ | * Shadow 1000 is special for trees, it uses alpha transparent textures to be calculated using GPU shadow buffer. (so this lod can have link on texture) | ||
+ | |||
+ | All faces must have property " | ||
+ | |||
+ | If the Volume LOD is missing, HW cannot cast shadows and there is no other alternative, | ||
+ | |||
+ | ShadowVolume - View Cargo, ShadowVolume - View Pilot, ShadowVolume - View Gunner - special shadow for static view resolution LODs. You have to enable them also in config: | ||
+ | |||
+ | < | ||
+ | viewDriverShadow = true; | ||
+ | viewGunnerShadow = true; | ||
+ | viewCargoShadow = true; | ||
+ | </ | ||
+ | |||
+ | OFP engine can also cast shadows using SHADOW BUFFER. This is controlled by model property sbsource and prefershadowvolume in geometry LOD. | ||
+ | |||
+ | For trees and vegetation there can also be used so called HYBRID SHADOW. This is controlled by model property Shadow=hybrid in Geometry LOD Those shadows are cast on all models except the model itself. Trees can use special shaders for leaves that simulates self shadowing. | ||
+ | |||
+ | |||
+ | ====== ShadowVolume on bis MLODs ====== | ||
+ | |||
+ | These are statistics on the bis MLOD vegetation objects for ShadowVolume settings. | ||
+ | |||
+ | akat02s: | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 10.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid | ||
+ | |||
+ | banana_2, banana_3, banana_4, hrusen2, jablon, ker buxus, ker deravej, ker pichlavej, ker s bobulema, Krovi_bigest, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1000.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | bodlak_group, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | placement = slope\\ | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | DD_borovice02, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | abSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | DD_bush01, les_fikovnik2, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | DD_bush02, les_dub_jiny, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 10.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | Krovi2, les_buk, les_dub, str buk, str dub, str krovisko vysoke, str_fikovnik: | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 10.000\\ | ||
+ | ShadowVolume 1000.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | Krovi4, Krovi, Krovi_long: | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1000.000\\ | ||
+ | geometry; | ||
+ | placement = slope\\ | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | les_singlestrom, | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 10.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid\\ | ||
+ | abSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | pinus_mugo_lowpoly: | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1500.000\\ | ||
+ | geometry; | ||
+ | placement = slope\\ | ||
+ | abSource = explicit\\ | ||
+ | PrefersShadowVolume = 0 | ||
+ | |||
+ | str jalovec, str_pinie: | ||
+ | ShadowVolume 0.000\\ | ||
+ | geometry; | ||
+ | shadow = hybrid | ||
+ | |||
+ | Conclusion: for shadows to work on bushes/ | ||
+ | ShadowVolume 0.000\\ | ||
+ | ShadowVolume 1000.000\\ | ||
+ | and in the geometry; | ||
+ | shadow = hybrid\\ | ||
+ | sbSource = explicit\\ | ||
+ | PrefersShadowVolume = 0\\ | ||
+ | the LODs must be closed and triangulated. | ||
+ | |||
+ | |||
+ | ====== Shadow | ||
+ | |||
+ | **Shadow Volume Tutorial** | ||
I was asked to write a tutorial about making shadows for ArmA and so I took the opportunity to paste it here, I know this as been explained before, however, this is a dedicated thread and will be easier for future searches. | I was asked to write a tutorial about making shadows for ArmA and so I took the opportunity to paste it here, I know this as been explained before, however, this is a dedicated thread and will be easier for future searches. | ||
Line 11: | Line 152: | ||
PS: Don't forget to delete the textures applied on the Shadows model (if you have any) since it's all black you don't need it mapped. | PS: Don't forget to delete the textures applied on the Shadows model (if you have any) since it's all black you don't need it mapped. | ||
- | 3 - Open a property inside your 10000 Lod and call it Lodnoshadow | + | 3 - Open a property inside your 10000 LOD and call it LODNoShadow |
- | 4 - Open the same property (Lodnoshadow) in all the other Lods but this time give it a value of 1. | + | 4 - Open the same property (LODNoShadow) in all the other LODs but this time give it a value of 1. |
- | 5 - Inside the Shadow Lod (10000) with the entire model selected go to Structure/ | + | 5 - Inside the Shadow Lod (10000) with the entire model selected go to Structure/ |
6 - If you do have any opened points/ | 6 - If you do have any opened points/ | ||
Line 21: | Line 162: | ||
PS: Be sure that all points/ | PS: Be sure that all points/ | ||
- | 7 - Finnaly | + | 7 - Finaly |
That's it, now try your shadow in game, good luck | That's it, now try your shadow in game, good luck | ||
Line 27: | Line 168: | ||
Model needs to be closed, triangulated AND sharp edged | Model needs to be closed, triangulated AND sharp edged | ||
- | You can have more than 400 polies | + | You can have more than 400 poly' |
- | i found that shadows on vehicles works no matter if triangulated or not no matter LOD 30 or 10000 but on my weapons i get really stupid results i don't know why, but soemtimes | + | i found that shadows on vehicles works no matter if triangulated or not no matter LOD 30 or 10000 but on my weapons i get really stupid results i don't know why, but sometimes |
inner shadow can cause sick effects on weapons ? | inner shadow can cause sick effects on weapons ? | ||
- | i get best results when shadow lod was almost copy of pilot view why shadows behave different ?\\ | + | i get best results when shadow lod was almost copy of pilot view why shadows behave different ?\\ |
i have my graphic options on LOW, maybe this ?\\ | i have my graphic options on LOW, maybe this ?\\ | ||
but i really get zebra effects | but i really get zebra effects | ||
- | i gave no "lodnoshadow | + | i gave no "LODNoShadow |
- | i gave model with lower polycount | + | i gave model with lower poly count as i it was in OFP maybe there should be more detailed model ?\\ |
- | all faces are closed, no " | + | all faces are closed, no " |
half of gun is almost black on the soldiers there is " | half of gun is almost black on the soldiers there is " | ||
- | Armored_Sheep (BIS employer): The LODNoShadow property is not necessary. This property is used in other lods to disable shadow projection on too complex meshes. | + | |
+ | ====== Notes ====== | ||
+ | |||
+ | **Armored_Sheep (bis dev)**: The LODNoShadow property is not necessary. This property is used in other lods to disable shadow projection on too complex meshes. | ||
+ | |||
+ | ArmA engine uses Shadow Volume 0, Shadow Volume 10 and Shadow Volume 1000. Different values than that are not used. | ||
+ | |||
+ | Shadow volume 0 is the main stencil shadow. It should have less than 1000 triangles. | ||
+ | |||
+ | Shadow Volume 10 is optimized stencil shadow LOD with as few triangles as possible. | ||
+ | |||
+ | Shadow 1000 is special for trees, it uses alpha transparent textures to be calculated using GPU shadow buffer. | ||
+ | |||
+ | |||
+ | ===== Earl Summary ===== | ||
+ | |||
+ | **Earl (bis dev)**: The only named property that should always be used is " | ||
+ | |||
+ | Default behavior should be: | ||
+ | |||
+ | * Use high detail SV LOD to draw stencil shadow | ||
+ | * At distance use lower detail SV LOD to draw stencil shadow | ||
+ | * At greater distance, use last or lower visual LODs for shadow map source, and start to fade that shadow away. | ||
+ | |||
+ | |||
+ | ===== Hand Rails ===== | ||
+ | |||
+ | **Armored_Sheep** (bis Dev) about handrail modeling in houses: Stencil buffer shadows (those sharp polygons) are not able to use alpha transparency. They are drawn by extruding triangles from ShadowVolume lod. | ||
+ | |||
+ | If you choose shadow buffer casting (used on trees) you can have alpha transparent textures in shadow casting lod (you define this by properties in geometry lod) BUT you will be still limited by texture resolution (ArmA casts this shadow using single 2048x2048 texture for whole scene) | ||
+ | |||
+ | At this particular model I suppose to don't put the rail in the shadow at all. (PMC edit: means its either no shadow, or model a real handrail with polygon' | ||
+ | |||
+ | |||
+ | ====== Closing Model ====== | ||
+ | |||
+ | modEmMaik about closing shadowvolume lod mesh: | ||
+ | |||
+ | I open up another O2, copy and paste the single element, which is not close-able, and try to detect the problem. | ||
+ | |||
+ | Sometimes faces are doubled, which you may detect in the solid view and switch the faces (w-button). | ||
+ | |||
+ | Sometimes the mesh is not closed because one edge in one face is splitt (one additional point in the same line). It looks closed, but it is not. | ||
+ | |||
+ | When it is closed, I copy the mesh back. | ||
+ | |||
+ | Best check for shadow LOD is to create a big box in the first visual LOD, invert the faces (w-button) of this box and check the result in the buldozer. |
arma/modeling/shadows.1183547654.txt.gz · Last modified: 2007/07/10 09:52 (external edit)