bevy_mod_scripting_display 0.19.0

Traits focused on printing types with type information contained in the bevy type registry
Documentation
1
2
3
4
5
6
7
8
9
impl crate::DebugWithTypeInfo for bevy_asset::UntypedHandle {
    fn to_string_with_type_info(
        &self,
        f: &mut std::fmt::Formatter<'_>,
        _type_info_provider: Option<&dyn crate::GetTypeInfo>,
    ) -> std::fmt::Result {
        write!(f, "{self:?}")
    }
}