How to use an external lib with my dynamic plugin?

Hi

I am trying to use the “TouchData” class from the namespace VVVV.DX11.Nodes.Renderers.Graphics.Touch for my own plugin. But my dynamic plugin doesn’t accept the using statement for the mentioned namespace.

Here’s what I have done so far:

  • downloaded the x64 version of mrvux lib and extracted the “packs” folder to my vvvv installlation directory

  • using the “TouchState” node in a patch works fine for example …

… but the following is not recognized:

using VVVV.DX11.Nodes.Renderers.Graphics.Touch;

Do I have to import the lib on another place too? What I am doing wrong?

Thanks & regards,
gurumediator

Probably you have to hit Ctrl+J: this opens ProjectExplorer, you then unfold the branch with plugin name, right click on reference and choose add > reference > browser tab > browse…

I hope this helps.

@devvvvs: the Ctrl+N that is shown under add > reference, opens NodeBrowser

Great, this worked - thank you very much.