Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Add sheen to water edge | ecb869a7849857e06f83b3e58a7abc118badcf95 | MSE | 2024-07-02 23:33:16 |
Copy globals from multiple convos on new game (enables 3D title screens) | b7af9cf230da946e04edf1e3e2ed6731b9bfcfbc | MSE | 2024-07-02 04:52:46 |
Work around world floor regression | 46115bf455166ca407a8e99babbb0b0ea6f6bf5b | MSE | 2024-06-22 06:38:58 |
Make static models destroyable | 82b787e2bc63b07d67cac610098580e7aafc054f | MSE | 2024-06-22 06:14:32 |
Make static avatars killable | 76f5731a518512057d7868e6c3f4d24825d74005 | MSE | 2024-06-22 03:26:48 |
Add support for weapon-dependent avatar prims | 4b59a1911ce1f13caddfe187db737914491ba6fe | MSE | 2024-06-20 06:00:45 |
Hide FPS in non-debug builds | 3994b75c7c8ccf67d8d9437582d2533fb4d13dc4 | MSE | 2024-06-19 04:45:32 |
De-hardcode data path for shaders | 648b298f390f039c44f4f23aa8fdd2e5d2650df6 | MSE | 2024-06-16 19:01:24 |
Hide reserve ammo count when there is none | 09c6e3131b04936949f1310e5fd15179b29c5c4f | MSE | 2024-06-12 23:02:55 |
Change rm -f to | 6f4ab08d92f2c99975c7bfa63b3777b4e087af4e | MSE | 2024-06-12 22:13:28 |
Cleanup | feb8a188b14d20819df87ae9ca4f67dec6be07ff | MSE | 2024-06-12 03:43:12 |
Allow setting mono font via init.json | ba70f7a9da5ba2fcfe77d09a8d489de19dfb0061 | MSE | 2024-06-12 03:37:19 |
Add support for particle damage/impact | ed57530ab69e9c32ac19c0c6a36cb6102791b7c6 | MSE | 2024-06-12 00:25:18 |
Add agent linear velocity to projectiles | 2e254d93065e60a6e76dab321aa64aaad72dede7 | MSE | 2024-06-11 16:34:15 |
Add weapon particle support | dc972a7f2cc0019d663b3284a1e49c3be313c74f | MSE | 2024-06-09 20:21:23 |
Initial commit | c4f36c095752bd4e7090caf48320d041fb2328bb | MSE | 2024-06-09 02:33:29 |
File | Lines added | Lines deleted |
---|---|---|
base/glsl/dungeon_sky_high.frag | 4 | 1 |
File base/glsl/dungeon_sky_high.frag changed (mode: 100644) (index ff734fb..f90b543) | |||
... | ... | void main(){ | |
263 | 263 | // Combine specular, diffuse, and shadow. TODO: Replace this ambient color term and IBL with global ambient GI. | // Combine specular, diffuse, and shadow. TODO: Replace this ambient color term and IBL with global ambient GI. |
264 | 264 | vec3 litColor = (diffuseColor + specularColor + punctualColor * punctualFactor) * 0.3 * u_ambient.rgb * (1.0 - shadow); | vec3 litColor = (diffuseColor + specularColor + punctualColor * punctualFactor) * 0.3 * u_ambient.rgb * (1.0 - shadow); |
265 | 265 | ||
266 | // Add a sheen where the water meets the surface. | ||
267 | vec3 sheen = vec3(min(max(0.5 - abs((u_waterHeights.x - v_AbsolutePos.y - 0.09) * 5.0 + 0.3) - shadow * 0.5, 0.0), 0.35)) * vec3(1.0, 1.0, 1.2); | ||
268 | |||
266 | 269 | // Tint the lit color when underwater. | // Tint the lit color when underwater. |
267 | 270 | litColor = mix( | litColor = mix( |
268 | 271 | litColor, | litColor, |
269 | u_underwater.rgb, | ||
272 | u_underwater.rgb + sheen, | ||
270 | 273 | u_underwater.a * f * f | u_underwater.a * f * f |
271 | 274 | ); | ); |
272 | 275 |