👎Deprecated: this form of system adapter has been deprecated in favor of system.map(...)
Expand description

A collection of common adapters for piping the result of a system.

Functions

  • dbgDeprecated
    System adapter that utilizes the bevy_utils::tracing::debug! macro to print the output of a system.
  • errorDeprecated
    System adapter that utilizes the bevy_utils::tracing::error! macro to print the output of a system.
  • ignoreDeprecated
    System adapter that ignores the output of the previous system in a pipe. This is useful for fallible systems that should simply return early in case of an Err/None.
  • infoDeprecated
    System adapter that utilizes the bevy_utils::tracing::info! macro to print system information.
  • newDeprecated
    Converts a regular function into a system adapter.
  • unwrapDeprecated
    System adapter that unwraps the Ok variant of a Result. This is useful for fallible systems that should panic in the case of an error.
  • warnDeprecated
    System adapter that utilizes the bevy_utils::tracing::warn! macro to print the output of a system.