You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class RootClass : ScriptableObject
{
public NestedClass childObj;
}
[Serializable]
class NestedClass
{
[EditorButton(nameof(CallMyMethod))]
public string testField;
// Method here in nested class wont be called, but in the parent ScriptableObject will work.
private void CallMyMethod()
{
// Will not be called, but expected!
}