First time here? Check out the FAQ!
x

Is it possible to specify a parameter field that updates at samplerate in the Class Editor?

+1 vote
513 views

By now I've used the type Sound when encapsulating a parameter which should update at samplerate. When I wanted to use CapyTalk I just used a constant for the input. But is it possible to specify a parameter that will have that beige background indicating it can work at samplerate? Which type should I use?

BTW the new Class Editor is great smiley

asked Feb 21, 2015 in Using Kyma by kymaguy (Virtuoso) (10,580 points)

1 Answer

+2 votes
 
Best answer

As long as it is used the right way in the original Sound, the following should work as parameter types in the Class editor:

  • hotValueOrSound
  • hotScaleOrSound
  • hotPositiveScaleOrSound
answered Feb 21, 2015 by ssc (Savant) (126,620 points)
selected Feb 22, 2015 by kymaguy
Thanks! What's the difference between Value and Scale BTW?
hotScaleOrSound checks constant parameter inputs to make sure they are in the range of -1 to +1. hotValueOrSound does not have this check.
Alright, thanks!
...