Struct bevy_inspector_egui::widgets::ResourceInspector[][src]

pub struct ResourceInspector<T>(_);

The resource inspector can be used to edit resources in the inspector.

Example

use bevy::{prelude::*, pbr::AmbientLight};
use bevy_inspector_egui::{Inspectable, InspectorPlugin, widgets::ResourceInspector};

#[derive(Inspectable, Default)]
struct Data {
    clear_color: ResourceInspector<ClearColor>,
    ambient_light: ResourceInspector<AmbientLight>,
}

fn main() {
    App::build()
        .add_plugins(DefaultPlugins)
        .add_plugin(InspectorPlugin::<Data>::new())
        .run();
}

Trait Implementations

impl<T> Debug for ResourceInspector<T>[src]

impl<T> Default for ResourceInspector<T>[src]

impl<T: Inspectable + Send + Sync + 'static> Inspectable for ResourceInspector<T>[src]

type Attributes = T::Attributes

The Attributes associated type specifies what attributes can be passed to a field. See the following snippet for an example: Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> FromWorld for T where
    T: Default

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,