RNBO Objects & Operators out~
Open Help

out~

signal outlet

Description

Indexed signal outlet from RNBO. In the exported code, creates a logical output channel for use in the target platform.

Arguments

index [number]

Each out~ object requires an index number, beginning with 1 , and creates an audio output channel in the RNBO patcher. In Max, this creates an outlet on the rnbo~ object for signal output of a single audio channel. In the exported code, this creates a logical output channel for use on the target.

Inlets

in1 [signal]

Signal sent to out~ will be sent out the corresponding outlet of the rnbo~ object.

A RNBO patcher can have multiple signal out~ objects with the same index. All signals received by such out~ objects will be output from the same signal outlet.

Fixed Attributes

These attributes must be set in the object box and determine the behavior of the object at runtime.

comment [symbol]

Defines the hint text shown when mousing over this outlet of the rnbo~ object in Max.

index [number]

Each out~ object requires an index number, beginning with 1 , and creates an audio output channel in the RNBO patcher. In Max, this creates an outlet on the rnbo~ object for signal output of a single audio channel. In the exported code, this creates a logical output channel for use on the target.

meta [symbol]

A JSON formatted string containing metadata for use by the exported code.

@meta can be used to pass on any information for custom needs via the exported description.json file. This has potential use for hardware mappings/routings, UI generation, advanced toolchain integration, etc.

Dynamic Attributes

These attributes can be modified in the code during execution using the set object

in1 [signal]

Signal sent to out~ will be sent out the corresponding outlet of the rnbo~ object.

A RNBO patcher can have multiple signal out~ objects with the same index. All signals received by such out~ objects will be output from the same signal outlet.

See Also

Name Description
in event inlet
in~ signal inlet
out event outlet
inport input tagged messages
outport output tagged messages