I am using this script inside Blender, and try loading the Python-Sonic using:
from psonic import *
however, that causes issue with binding.
So, I need to use it like this:
import psonic as ps
ps.play(value) actually works
but using it like above causing
ps.use_synth(BLAH)
failed to work :(
Is there a better way to load this python module?
I am using this script inside Blender, and try loading the Python-Sonic using:
from psonic import *
however, that causes issue with binding.
So, I need to use it like this:
import psonic as ps
ps.play(value) actually works
but using it like above causing
ps.use_synth(BLAH)
failed to work :(
Is there a better way to load this python module?