diff --git a/voxygen/src/anim/character/block.rs b/voxygen/src/anim/character/block.rs index 72e08d2a05..e62654ec0e 100644 --- a/voxygen/src/anim/character/block.rs +++ b/voxygen/src/anim/character/block.rs @@ -26,9 +26,9 @@ impl Animation for BlockAnimation { let wave_ultra_slow = (anim_time as f32 * 3.0 + PI).sin(); let wave_ultra_slow_cos = (anim_time as f32 * 3.0 + PI).cos(); let wave_slow_cos = (anim_time as f32 * 6.0 + PI).cos(); - let wave_slow = (anim_time as f32 * 6.0 + PI).sin(); + let _wave_slow = (anim_time as f32 * 6.0 + PI).sin(); - let head_look = Vec2::new( + let _head_look = Vec2::new( ((global_time + anim_time) as f32 / 1.5) .floor() .mul(7331.0) diff --git a/voxygen/src/session.rs b/voxygen/src/session.rs index 1bbfad91e6..854f1674b8 100644 --- a/voxygen/src/session.rs +++ b/voxygen/src/session.rs @@ -2,7 +2,7 @@ use crate::{ hud::{DebugInfo, Event as HudEvent, Hud}, key_state::KeyState, render::Renderer, - scene::{camera::Camera, Scene}, + scene::Scene, window::{Event, GameInput}, Direction, Error, GlobalState, PlayState, PlayStateResult, };