bevy_gizmos::config

Trait GizmoConfigGroup

Source
pub trait GizmoConfigGroup:
    Reflect
    + TypePath
    + Default { }
Expand description

A trait used to create gizmo configs groups.

Here you can store additional configuration for you gizmo group not covered by GizmoConfig

Make sure to derive Default + Reflect and register in the app using app.init_gizmo_group::<T>()

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl GizmoConfigGroup for AabbGizmoConfigGroup
where Self: Reflect + TypePath + Default,

Available on crate feature bevy_render only.
Source§

impl GizmoConfigGroup for LightGizmoConfigGroup
where Self: Reflect + TypePath + Default,

Available on crate features bevy_pbr and bevy_render only.
Source§

impl GizmoConfigGroup for DefaultGizmoConfigGroup
where Self: Reflect + TypePath + Default,