From 5c4090f09997f0c9cbaa3ea56c92f791e90731e5 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sat, 22 Oct 2022 13:50:13 +0100 Subject: [PATCH] Updated README --- CHANGELOG.md | 4 ++++ voxygen/src/render/pipelines/fluid.rs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76714a79b2..d1c274292f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Pets can now be traded with. - Crafting recipe for black lantern - Added redwood and dead trees +- Experimental screen-space reflection shader +- Water will now move according to its apparent flow direction ### Changed - Use fluent for translations @@ -60,6 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Pets no longer aggro on pet owners after being healed - Pets no longer lose their intrinsic weapons/armour when loaded on login. - Fixed npcs using `/say` instead of `/tell` +- Camera jittering in third person has been significantly reduced +- Many water shader issues have been fixed ## [0.13.0] - 2022-07-23 diff --git a/voxygen/src/render/pipelines/fluid.rs b/voxygen/src/render/pipelines/fluid.rs index aea36bbfd5..331e73cac0 100644 --- a/voxygen/src/render/pipelines/fluid.rs +++ b/voxygen/src/render/pipelines/fluid.rs @@ -30,7 +30,7 @@ impl Vertex { | (norm_bits & 0x7) << 29, vel: river_velocity .map2(Vec2::new(0, 16), |e, off| { - (((e * 1000.0 + 32768.9) as u16 as u32) << off) + ((e * 1000.0 + 32768.9) as u16 as u32) << off }) .reduce_bitor(), }