Fix low fps

This commit is contained in:
Monty Marz 2019-08-19 08:03:19 +00:00 committed by Marcel
parent 61d6113822
commit 7168850f05

View File

@ -19,7 +19,7 @@ use common::{
};
use dot_vox::DotVoxData;
use hashbrown::HashMap;
use log::warn;
use log::debug;
use specs::{Entity as EcsEntity, Join};
use std::f32;
use vek::*;
@ -913,7 +913,7 @@ impl FigureMgr {
renderer.render_figure(model, globals, locals, bone_consts, lights);
} else {
warn!("Body has no saved figure");
debug!("Body has no saved figure");
}
}
}