diff --git a/voxygen/src/render/renderer.rs b/voxygen/src/render/renderer.rs index f82e11faba..ef1af1728d 100644 --- a/voxygen/src/render/renderer.rs +++ b/voxygen/src/render/renderer.rs @@ -230,9 +230,7 @@ impl Renderer { /// Queue the clearing of the color and depth targets ready for a new frame to be rendered. /// TODO: Make a version of this that doesn't clear the colour target for speed. pub fn clear(&mut self, col: Rgba) { - //self.encoder.clear(&self.tgt_color_view, col.into_array()); self.encoder.clear_depth(&self.tgt_depth_view, 1.0); - //self.encoder.clear(&self.win_color_view, col.into_array()); self.encoder.clear_depth(&self.win_depth_view, 1.0); } diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 8be3ca11b4..7c8394f080 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -742,7 +742,7 @@ impl FigureState { ) { let mat = Mat4::::identity() * Mat4::translation_3d(pos) - * Mat4::rotation_z(-ori.x.atan2(ori.y)) // + f32::consts::PI / 2.0); + * Mat4::rotation_z(-ori.x.atan2(ori.y)) * Mat4::scaling_3d(Vec3::from(0.8)); let locals = FigureLocals::new(mat, col);