File size: 233 Bytes
29a5ed9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
-- Simple example on how to list available samplers - Yownas
 
-- To iterate over the list from python we'll use python.iter()

samplers = sd.getsamplers()

ui.out("Samplers:")
for name in python.iter(samplers) do
  ui.out(name)
end