You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
document-features = { version = "0.2", optional = true }
28
25
29
26
[features]
27
+
default = ["builder", "tracing", "time", "std"]
28
+
29
+
## Enables access to jonmo's high-level entity builder, `JonmoBuilder`.
30
+
builder = []
31
+
32
+
## Enables access to signal ext `.debug` methods, which conveniently logs signal outputs at any step.
33
+
tracing = ["bevy_log"]
34
+
35
+
## Enables access to `SignalExt::throttle`, which delays subsequent outputs by some `Duration`.
36
+
time = ["bevy_time"]
37
+
38
+
## `DebugUiPlugin` which enables toggling [`bevy_dev_tools::ui_debug_overlay::DebugUiPlugin`](https://docs.rs/bevy/latest/bevy/dev_tools/ui_debug_overlay/struct.DebugUiPlugin.html) with the `F1` key; requires a camera to be marked with the [`IsDefaultCamera`](https://docs.rs/bevy/latest/bevy/prelude/struct.IsDefaultUiCamera.html#) component.
30
39
debug = ["bevy/bevy_ui_debug"]
40
+
41
+
## Uses the Rust standard library.
42
+
std = [
43
+
"bevy_app/std",
44
+
"bevy_ecs/std",
45
+
"bevy_platform/std",
46
+
"bevy_time?/std",
47
+
]
48
+
49
+
## Rely on `critical-section` for synchronization primitives.
50
+
critical-section = [
51
+
"bevy_app/critical-section",
52
+
"bevy_ecs/critical-section",
53
+
"bevy_platform/critical-section",
54
+
"bevy_time?/critical-section",
55
+
]
56
+
57
+
## Enables access to browser APIs in a web context.
0 commit comments