#Removing axis gizmos from sprites

5 messages · Page 1 of 1 (latest)

safe dragon
#

How can I delete the axis gizmos from sprites?

#

commands
.spawn(SpriteBundle {
sprite: Sprite {
color: Color::rgb(1.0, 1.0, 1.0),
..default()
},
..default()
})
.insert(Transform {
translation: Vec3::new(0.0, -325.0, 0.0),
scale: Vec3::new(5000.0, 70.0, 1.0),
..default()
})
.insert(RigidBody::Fixed)
.insert(Collider::cuboid(0.5, 0.5))
.insert(GroundMarker)
.insert(Name::new("Ground"));

#

the code for rendering the white ground

stray summit
#

You probably need to change the bevy_rapier plugin settings

merry spire