Have you checked the polyphony count? Do you have it set to at least 4?
(Yes, I know this is just one step up from "Is it switched on?"
)
Also, although it doesn't affect anything, testing if a Boolean is equal to "true" just looks ugly to me.
I prefer:
Code: Select all
if(bLinkInputJack.IsConnected())
{
// Conditional code in here
}
And always put braces around the conditional code, even if it's just one line. Then, if you modify it, you won't accidentally add another line with the same indentation, presuming that it will be subject to the same condition.
But, as I say, it has nothing to do with your current bug! Best of luck!