InControl Integration Error whiit Custom Bindings Class

RiccardoRp

New member
Hello,
I created my custom Bindings class, named CustomBindings, and i have paste the same code of SampleBindings in it.

The problem is that i don't know how to refer to my class in the Bindings Type Attribute.
I tried to specify only the name:
1619215279663.png

But unfortunately it gives me these errors:
1619215316865.png

Do you have any idea of what is happening?

When I insert the SampleBindings of Opsive (Opsive.Shared.Integrations.InControl.SampleBindings) it works fine.
 
It seems like it can't see the default namespace from other assemblies.

The error is at line:
ActionSet = Activator.CreateInstance(Type.GetType(m_BindingsType)) as PlayerActionSet;

Type.GetType(m_BindingsType) = null


I also tried to define a root namespace for my project and use that namespace to refer to my bindings script, but the error was the same.
Do you have any idea?

I also tried to rebuild my solution, but nothing
 
Top