2个不稳定版本
0.2.0 | 2022年8月4日 |
---|---|
0.1.0 | 2022年5月2日 |
#1685 in 游戏开发
7KB
使用
use bevy::{
prelude::*,
diagnostic::LogDiagnosticsPlugin,
};
use bevy_diagnostic_vertex_count::{VertexCountDiagnosticsPlugin, VertexCountDiagnosticsSettings};
fn main() {
App::new()
.insert_resource(VertexCountDiagnosticsSettings {
only_visible: true // Set whether only visible meshes should be diagnosed. Defaults to true
})
.add_plugins(DefaultPlugins)
.add_plugin(LogDiagnosticsPlugin::default()) // prints our diagnostics to the console
.add_plugin(VertexCountDiagnosticsPlugin)
.run();
}
版本
bevy_diagnostic_vertex_count | bevy |
---|---|
0.2 | 0.8 |
0.1 | 0.7 |
许可证
Apache-2.0或MIT双许可
依赖关系
~40–55MB
~797K SLoC