View Single Post
Old 02-21-2012, 06:09 AM   #34
schwa
Administrator
 
schwa's Avatar
 
Join Date: Mar 2007
Location: NY
Posts: 15,821
Default

Quote:
Originally Posted by Banned View Post
Plugin parameters do not seem to respond when you send them the exact values 0 and 1.
I'm not seeing this when sending OSC directly to REAPER, so it might be something caused by the middleware processing you are doing. You can test with reascript:

RPR_OscLocalMessageToHost("/track/1/fx/1/fxparam/1/value", 1.0);

That does set the FX parameter to its maximum value, as expected.

If you are doing some external MIDI-to-OSC processing, code like
Code:
oscvalue=midivalue/128
would result in exactly 1 never being sent (since midivalue is in the range [0,127] inclusive).
schwa is offline   Reply With Quote