How do I access the Motion control feature on the joycons?
-
I want to be able to add some 3D joycons and add a pointer to make a small test of picking up and dragging around a ball. How would I do this? I started using FUZE on the switch yesterday.
-
Start with the example code at fuzearena.com/help/view/controls
From there, experiment with c.orientation and c.velocity! It will take a bit of trial and error to get the gestures you are after.
After you get used to how the controller motions translate to the numbers stored in those variables: I recommend doing some research about moving averages (for example). You will find that the motion control data are "noisy" (which is normal for sensors), so using a method like the moving average will help that side.
-
That's interesting never thought about using velocity with the orientation.