fix double backticks

This commit is contained in:
Michael Walter Van Der Velden 2024-11-21 14:58:03 +00:00
parent f0a90950ee
commit c9fff8954a
No known key found for this signature in database

View file

@ -24,7 +24,7 @@ pub enum SpritePickingMode {
/// Only consider the rect of a given sprite.
BoundingBox,
/// Ignore any part of a sprite which has a lower alpha value than the threshold (inclusive)
/// Threshold is given as an f32 representing the value you get from [`bevy_color::color::Color::alpha``]
/// Threshold is given as an f32 representing the value you get from [`bevy_color::color::Color::alpha`]
AlphaThreshold(f32),
}