MIDI to OSC | Shapekeys (Blendshapes) #114
Unanswered
marcus-universe
asked this question in
Q&A
Replies: 1 comment 7 replies
-
if i were you id remap each note to a bool, this can easily be done in td. while this would not take velocity into effect implementing that would be fairly complicated. in order to turn those bools into the shapekeys moving you want to use the fx layer animator on your avatar. for each key make a down animation then have a layer in the animator go between entry, down and exit with the condition being that note's bool. if you need a more detailed explanation lmk. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone 😉✌
I'm working on my own VRChat Piano Avatar.
I created for every note on the piano a shape key (Blendshape) that presses the note down.
I also received over Touch Designer Midi signals to OSC on Port 9000. The Signals provide a Midi Name (ADDRESS) that starts with /ch1n and after that with the corresponding number for the Midi Key. Every signal provides a Float value between 0 - 1 (depending on how hard I press a key on the piano).
Here a Spreadsheet for orientation 😉👍
In Unity, I created an Avatar Parameter Expression to Test the Key ch1n73 (C#) 😏
Now my question is, How I can change a shape key with the parameter values? 🤔
Blendshapes have values between 0 to 100. This means I need to multiply it by 100. I found a doc for manipulating Shapekeys with C#.
https://docs.unity3d.com/Manual/BlendShapes.html
But how do I get the values from the OSC parameters? 🤔
Beta Was this translation helpful? Give feedback.
All reactions