pargs
Contents
pargs#
List of strings passed to the Sketch through the call to run_sketch().
Examples#
def setup():
py5.background(py5.pargs[0])
py5.run_sketch(sketch_args=["#FF0000"])
Description#
List of strings passed to the Sketch through the call to run_sketch(). Only passing strings is allowed, but you can convert string types to something else to make this more useful.
Underlying Processing field: args
Updated on September 01, 2022 16:36:02pm UTC