mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Reflect derived traits on all components and resources: bevy_ecs (#15215)
Solves https://github.com/bevyengine/bevy/issues/15187 for bevy_ecs
This commit is contained in:
parent
df8cb3e5e2
commit
53d2bc9482
1 changed files with 4 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
||||||
use crate as bevy_ecs;
|
use crate as bevy_ecs;
|
||||||
|
#[cfg(feature = "bevy_reflect")]
|
||||||
|
use bevy_ecs::reflect::ReflectResource;
|
||||||
use bevy_ecs::{
|
use bevy_ecs::{
|
||||||
event::{Event, EventCursor, EventId, EventInstance},
|
event::{Event, EventCursor, EventId, EventInstance},
|
||||||
system::Resource,
|
system::Resource,
|
||||||
};
|
};
|
||||||
#[cfg(feature = "bevy_reflect")]
|
#[cfg(feature = "bevy_reflect")]
|
||||||
use bevy_reflect::Reflect;
|
use bevy_reflect::{std_traits::ReflectDefault, Reflect};
|
||||||
use bevy_utils::detailed_trace;
|
use bevy_utils::detailed_trace;
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use std::ops::{Deref, DerefMut};
|
use std::ops::{Deref, DerefMut};
|
||||||
|
@ -85,7 +87,7 @@ use std::ops::{Deref, DerefMut};
|
||||||
/// [`EventWriter`]: super::EventWriter
|
/// [`EventWriter`]: super::EventWriter
|
||||||
/// [`event_update_system`]: super::event_update_system
|
/// [`event_update_system`]: super::event_update_system
|
||||||
#[derive(Debug, Resource)]
|
#[derive(Debug, Resource)]
|
||||||
#[cfg_attr(feature = "bevy_reflect", derive(Reflect))]
|
#[cfg_attr(feature = "bevy_reflect", derive(Reflect), reflect(Resource, Default))]
|
||||||
pub struct Events<E: Event> {
|
pub struct Events<E: Event> {
|
||||||
/// Holds the oldest still active events.
|
/// Holds the oldest still active events.
|
||||||
/// Note that `a.start_event_count + a.len()` should always be equal to `events_b.start_event_count`.
|
/// Note that `a.start_event_count + a.len()` should always be equal to `events_b.start_event_count`.
|
||||||
|
|
Loading…
Reference in a new issue