You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/02.getting_started.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,10 +99,11 @@ This list will be continuously epanded to document differences in object behavio
99
99
* Heavy does not support numbers in `[unpack]`, e.g. `[unpack 0 0]` gives `Heavy only supports arguments 'f' and 's' to unpack.` Workaround is to use `f` instead, e.g. `[unpack f f]`, and if necessary prime the default values with a `[loadbang]` and `[0 0(`.
100
100
* Sliders and number inputs are converted to `[f ]` and thus do not store send/receive/initialization/etc. settings.
101
101
* Heavy does not accept arguments and control connections to: `[rzero~]`, `[rzero_rev~]`, `[czero~]`, `[czero_rev~]`. In Heavy, these objects accept only signal inputs. Arguments and control connections are ignored.
102
-
* On the `[select]`object it is currently not possible to set the arguments via the right inlet (internally a hardcoded switch_case is used).
102
+
* On the `[select]`and `[route]` objects it is currently not possible to set the arguments via the right inlet (internally a hardcoded switch_case is used).
103
103
* Heavy supports remote/send messages, however empty messages are currently removed. So the typical `[; bla 1(` multiline message needs to contain at least something on the first line: `[_; bla 1(`.
104
-
* Remote/send messages with `sinesum`or `const` arguments to initialize table values are not supported.
105
-
*`[metro]` and `[timer]` objects do not accept tempo messages or unit arguments.
104
+
* Remote/send messages with `sinesum`, `const`or `resize` arguments to initialize table values, or modify the table dimensions, are not supported.
105
+
*`[delay]`, `[metro]` and `[timer]` objects do not accept tempo messages or unit arguments.
106
106
*`[snapshot~]` does not respond within the same control flow as it executes in signal context. Its output happens on the next audio cycle, so additional care for this control flow needs to be taken into account if you depend on synchronous execution. It also doesn't accept `[set(` messages.
107
107
* Certain filters are sensitive to ‘blowing up’ at very low or very high cutoff frequencies and/or resonances, due to the filter coefficients not being perfectly represented with a finite number of bits. While Pure data natively uses 64 bits, platforms like `OWL` and `Daisy` that use 32 bit float are more sensitive to this. For example, the Pure data `[bp~]` filter is implemented with a biquad which is prone to fail or distort with cutoff frequencies less than around 200 Hz (at 48kHz sample rate).
108
+
* Right inlet for table onset of `[tabread4~]` does not do anything.
108
109
* Heavy does not support multichannel connections.
0 commit comments