1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//!
//! ## This API Reference
//! The purpose of this API reference is to describe the API provided by this library.
//! More explanation-oriented documentation, tutorials, and guides are available in the
//! [`bevy_pipe_affect` book](https://trouv.github.io/bevy_pipe_affect/v0.3.0). <!-- x-release-please-version -->
//!
//! The following are good jumping-off points for beginners:
//! - [*Motivations* explanation](https://trouv.github.io/bevy_pipe_affect/v0.3.0/explanation/motivations.html) <!-- x-release-please-version -->
//! - [*effects* module api reference](effects) (a list of effects and constructors provided by the library)
//!
//! Cargo examples are also available in this library's
//! [github repository](https://github.com/Trouv/bevy_pipe_affect/tree/v0.3.0/examples). <!-- x-release-please-version -->
//!
//! ## Feature flags
//! This crate provides the following set of [feature flags]:
//! - `derive`: enables the [`Effect`] derive macro for structs and enums of effects
//! - `asset`: enables the `bevy/bevy_asset` feature and [`Asset`-related effects]
//!
//! None of these are enabled by default.
//!
//! [feature flags]: https://doc.rust-lang.org/cargo/reference/features.html#the-features-section
//! [`Asset`-related effects]: effects::asset
pub use Effect;
pub use ;
pub use QueryDataEffect;
/// Derive macro for the [`Effect`] trait. See that trait for more details.
///
/// *Requires the `derive` feature to be enabled.*
pub use Effect;