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.

12 lines
173B

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