Hi all,
I have a class in a dll:
public class MyClass : MonoBehaviour
{
public void MyMethod() { Debug.Log("MyClass::MyMethod()"); }
}
I've included the dll in the Unity project and added a class in the project:
public class MyDerivedClass : MyClass
{
public UnityEngine.Events.UnityEvent myEvent;
}
When I try to add `MyMethod()` to the `myEvent` in the inspector it isn't visible.
Any ideas that could help me out?
Thanks!
↧