You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
200B

  1. config.frameDivider = 1
  2. config.bufferSize = 16
  3. function process(block)
  4. for i=1,6 do
  5. for j=1,block.bufferSize do
  6. block.outputs[i][j] = block.inputs[i][j]
  7. end
  8. end
  9. end
  10. print("Hello, world!")