This crate is deprecated. The functionality has been integrated into Bevy.
Use Gizmos::cross
for 3D
and Gizmos::cross_2d
for 2D.
Adds cross
and cross_2d
gizmos to Bevy.
[dependencies]
bevy-cross-gizmo = "0.14.0"
use bevy::prelude::*;
use bevy_cross_gizmo::BevyCrossGizmo;
fn update(mut gizmos: Gizmos) {
gizmos.cross(Vec3::ZERO, Quat::IDENTITY, 0.3, Color::WHITE);
gizmos.cross_2d(Vec3::ZERO, 0.0, 0.3, Color::WHITE);
}
bevy |
bevy-cross-gizmo |
---|---|
0.15.0 | part of Bevy Gizmos |
0.14.0 | 0.14.0 |
0.13.2 | 0.13.2 |
Dual-licensed under either:
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
at your option.