Learn R Programming

stopmotion (version 0.1.0)

stopmotion_verbosity: Control stopmotion verbosity

Description

Convenience wrapper around options(stopmotion.verbose = ) for enabling or disabling the frame-sequence messages printed after each operation. By default messages are shown in interactive sessions and suppressed in non-interactive contexts (e.g. knitr/Quarto rendering).

Usage

stopmotion_verbosity(verbose)

Value

the previous value of the option, invisibly.

Arguments

verbose

TRUE to enable messages, FALSE to suppress them.

Examples

Run this code
old <- stopmotion_verbosity(FALSE)
on.exit(stopmotion_verbosity(old))

Run the code above in your browser using DataLab