MCPcopy Create free account
hub / github.com/bevy-cheatbook/bevy-cheatbook / disable_plugins

Function disable_plugins

src/code013/src/programming/plugins.rs:92–101  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

90// ANCHOR_END: plugin-groups
91
92fn disable_plugins() {
93// ANCHOR: plugin-groups-disable
94App::new()
95 .add_plugins(
96 DefaultPlugins.build()
97 .disable::<bevy::log::LogPlugin>()
98 )
99 .run();
100// ANCHOR_END: plugin-groups-disable
101}
102
103}
104

Callers

nothing calls this directly

Calls 1

buildMethod · 0.45

Tested by

no test coverage detected